flutter/dev/benchmarks/macrobenchmarks/test_driver/draw_points_perf_test.dart
Jonah Williams 41abe998ee
[devicelab] add drawPoints benchmark (#126728)
Add a benchmark that measures the improvements from https://github.com/flutter/engine/pull/41803
2023-05-15 19:14:58 +00:00

17 lines
411 B
Dart

// 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() {
macroPerfTest(
'draw_points_perf',
kDrawPointsPageRougeName,
pageDelay: const Duration(seconds: 1),
duration: const Duration(seconds: 10),
);
}