From fa96ddd42789cf42ea1aa9c2f3635e32b505fd78 Mon Sep 17 00:00:00 2001 From: Jonah Williams Date: Mon, 25 Apr 2022 21:39:07 -0700 Subject: [PATCH] add missing benchmark test file fromhttps://github.com/flutter/flutter/pull/102532 (#102544) --- .../test/animated_complex_opacity_perf_e2e.dart | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 dev/benchmarks/macrobenchmarks/test/animated_complex_opacity_perf_e2e.dart diff --git a/dev/benchmarks/macrobenchmarks/test/animated_complex_opacity_perf_e2e.dart b/dev/benchmarks/macrobenchmarks/test/animated_complex_opacity_perf_e2e.dart new file mode 100644 index 00000000000..cd6e4f92f5c --- /dev/null +++ b/dev/benchmarks/macrobenchmarks/test/animated_complex_opacity_perf_e2e.dart @@ -0,0 +1,16 @@ +// Copyright 2014 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +import 'package:macrobenchmarks/common.dart'; + +import 'util.dart'; + +void main() { + macroPerfTestE2E( + 'animated_complex_opacity_perf', + kAnimatedComplexOpacityPerfRouteName, + pageDelay: const Duration(seconds: 1), + duration: const Duration(seconds: 5), + ); +}