Reland "Migrate driver tests in example/ to NNBD (#75022)" (#75264)

This commit is contained in:
Michael Goderbauer 2021-02-04 11:11:03 -08:00 committed by GitHub
parent 388b031298
commit 66d5a30de7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 16 deletions

View file

@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart = 2.8
import 'dart:async';
import 'package:flutter_driver/flutter_driver.dart';
@ -15,7 +14,7 @@ void main() {
group('Hello World App', () {
final SerializableFinder titleFinder = find.byValueKey('title');
FlutterDriver driver;
late FlutterDriver driver;
// Connect to the Flutter driver before running any tests.
setUpAll(() async {

View file

@ -2,23 +2,19 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// TODO(goderbauer): migrate this file to null-safety when flutter_driver is null-safe.
// @dart = 2.9
import 'package:flutter_driver/flutter_driver.dart';
import 'package:test/test.dart' hide TypeMatcher, isInstanceOf;
void main() {
group('button tap test', () {
FlutterDriver driver;
late FlutterDriver driver;
setUpAll(() async {
driver = await FlutterDriver.connect();
});
tearDownAll(() async {
if (driver != null)
driver.close();
driver.close();
});
test('tap on the button, verify result', () async {
@ -30,7 +26,7 @@ void main() {
await driver.waitFor(button);
await driver.tap(button);
String batteryLevel;
String? batteryLevel;
while (batteryLevel == null || batteryLevel.contains('unknown')) {
batteryLevel = await driver.getText(batteryLevelLabel);
}

View file

@ -2,23 +2,19 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// TODO(goderbauer): migrate this file to null-safety when flutter_driver is null-safe.
// @dart = 2.9
import 'package:flutter_driver/flutter_driver.dart';
import 'package:test/test.dart' hide TypeMatcher, isInstanceOf;
void main() {
group('button tap test', () {
FlutterDriver driver;
late FlutterDriver driver;
setUpAll(() async {
driver = await FlutterDriver.connect();
});
tearDownAll(() async {
if (driver != null)
driver.close();
driver.close();
});
test('tap on the button, verify result', () async {
@ -30,7 +26,7 @@ void main() {
await driver.waitFor(button);
await driver.tap(button);
String batteryLevel;
String? batteryLevel;
while (batteryLevel == null || batteryLevel.contains('unknown')) {
batteryLevel = await driver.getText(batteryLevelLabel);
}