Unverified Commit 6bd54753 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Revert "Migrate driver tests in example/ to NNBD (#75022)" (#75161)

This reverts commit 50a8ecb7.
parent 00aa1442
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
// @dart = 2.8
import 'dart:async'; import 'dart:async';
import 'package:flutter_driver/flutter_driver.dart'; import 'package:flutter_driver/flutter_driver.dart';
...@@ -14,7 +15,7 @@ void main() { ...@@ -14,7 +15,7 @@ void main() {
group('Hello World App', () { group('Hello World App', () {
final SerializableFinder titleFinder = find.byValueKey('title'); final SerializableFinder titleFinder = find.byValueKey('title');
late FlutterDriver driver; FlutterDriver driver;
// Connect to the Flutter driver before running any tests. // Connect to the Flutter driver before running any tests.
setUpAll(() async { setUpAll(() async {
......
...@@ -2,19 +2,23 @@ ...@@ -2,19 +2,23 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // 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:flutter_driver/flutter_driver.dart';
import 'package:test/test.dart' hide TypeMatcher, isInstanceOf; import 'package:test/test.dart' hide TypeMatcher, isInstanceOf;
void main() { void main() {
group('button tap test', () { group('button tap test', () {
late FlutterDriver driver; FlutterDriver driver;
setUpAll(() async { setUpAll(() async {
driver = await FlutterDriver.connect(); driver = await FlutterDriver.connect();
}); });
tearDownAll(() async { tearDownAll(() async {
driver.close(); if (driver != null)
driver.close();
}); });
test('tap on the button, verify result', () async { test('tap on the button, verify result', () async {
...@@ -26,7 +30,7 @@ void main() { ...@@ -26,7 +30,7 @@ void main() {
await driver.waitFor(button); await driver.waitFor(button);
await driver.tap(button); await driver.tap(button);
String? batteryLevel; String batteryLevel;
while (batteryLevel == null || batteryLevel.contains('unknown')) { while (batteryLevel == null || batteryLevel.contains('unknown')) {
batteryLevel = await driver.getText(batteryLevelLabel); batteryLevel = await driver.getText(batteryLevelLabel);
} }
......
...@@ -2,19 +2,23 @@ ...@@ -2,19 +2,23 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // 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:flutter_driver/flutter_driver.dart';
import 'package:test/test.dart' hide TypeMatcher, isInstanceOf; import 'package:test/test.dart' hide TypeMatcher, isInstanceOf;
void main() { void main() {
group('button tap test', () { group('button tap test', () {
late FlutterDriver driver; FlutterDriver driver;
setUpAll(() async { setUpAll(() async {
driver = await FlutterDriver.connect(); driver = await FlutterDriver.connect();
}); });
tearDownAll(() async { tearDownAll(() async {
driver.close(); if (driver != null)
driver.close();
}); });
test('tap on the button, verify result', () async { test('tap on the button, verify result', () async {
...@@ -26,7 +30,7 @@ void main() { ...@@ -26,7 +30,7 @@ void main() {
await driver.waitFor(button); await driver.waitFor(button);
await driver.tap(button); await driver.tap(button);
String? batteryLevel; String batteryLevel;
while (batteryLevel == null || batteryLevel.contains('unknown')) { while (batteryLevel == null || batteryLevel.contains('unknown')) {
batteryLevel = await driver.getText(batteryLevelLabel); batteryLevel = await driver.getText(batteryLevelLabel);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment