mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
31 lines
1010 B
Dart
31 lines
1010 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:flutter_driver/flutter_driver.dart';
|
|
import 'package:macrobenchmarks/common.dart';
|
|
|
|
import 'util.dart';
|
|
|
|
void main() {
|
|
macroPerfTest(
|
|
'picture_cache_perf',
|
|
kPictureCacheRouteName,
|
|
pageDelay: const Duration(seconds: 1),
|
|
driverOps: (FlutterDriver driver) async {
|
|
final SerializableFinder tabBarView = find.byValueKey('tabbar_view');
|
|
Future<void> _scrollOnce(double offset) async {
|
|
// Technically it's not scrolling but moving
|
|
await driver.scroll(tabBarView, offset, 0.0, const Duration(milliseconds: 300));
|
|
await Future<void>.delayed(const Duration(milliseconds: 500));
|
|
}
|
|
for (int i = 0; i < 3; i += 1) {
|
|
await _scrollOnce(-300.0);
|
|
await _scrollOnce(-300.0);
|
|
await _scrollOnce(300.0);
|
|
await _scrollOnce(300.0);
|
|
}
|
|
},
|
|
);
|
|
}
|