mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This PR created a main page for platform view tests in the android views testing app. The main page none contains a list of the links to the pages being tested. It puts the android view motion events tests to a sub page. The PR also added iOS related files to get ready for adding the iOS platform views tests.
34 lines
962 B
Dart
34 lines
962 B
Dart
// Copyright 2018 The Chromium 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 'dart:async';
|
|
import 'dart:io' show Platform;
|
|
import 'package:flutter_driver/flutter_driver.dart';
|
|
import 'package:test/test.dart' hide TypeMatcher, isInstanceOf;
|
|
|
|
Future<void> main() async {
|
|
FlutterDriver driver;
|
|
|
|
setUpAll(() async {
|
|
driver = await FlutterDriver.connect();
|
|
});
|
|
|
|
tearDownAll(() {
|
|
driver.close();
|
|
});
|
|
|
|
group('MotionEvents tests ', () {
|
|
test('recomposition', () async {
|
|
if (Platform.isAndroid) {
|
|
final SerializableFinder motionEventsListTile =
|
|
find.byValueKey('MotionEventsListTile');
|
|
await driver.tap(motionEventsListTile);
|
|
await driver.waitFor(find.byValueKey('PlatformView'));
|
|
final String errorMessage = await driver.requestData('run test');
|
|
expect(errorMessage, '');
|
|
}
|
|
});
|
|
});
|
|
}
|