
This makes it possible to substitute 'flutter run' for 'flutter test' and actually watch a test run on a device. For any test that depends on flutter_test: 1. Remove any import of 'package:test/test.dart'. 2. Replace `testWidgets('...', (WidgetTester tester) {` with `testWidgets('...', (WidgetTester tester) async {` 3. Add an "await" in front of calls to any of the following: * tap() * tapAt() * fling() * flingFrom() * scroll() * scrollAt() * pump() * pumpWidget() 4. Replace any calls to `tester.flushMicrotasks()` with calls to `await tester.idle()`. There's a guarding API that you can use, if you have particularly complicated tests, to get better error messages. Search for TestAsyncUtils.
29 lines
966 B
Dart
29 lines
966 B
Dart
// Copyright 2016 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 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
test('stack manipulation: reportExpectCall', () {
|
|
try {
|
|
expect(false, isTrue);
|
|
} catch (e, stack) {
|
|
StringBuffer information = new StringBuffer();
|
|
expect(reportExpectCall(stack, information), 3);
|
|
List<String> lines = information.toString().split('\n');
|
|
expect(lines[0], 'This was caught by the test expectation on the following line:');
|
|
expect(lines[1], matches(r'^ .*stack_manipulation_test.dart line [0-9]+$'));
|
|
}
|
|
|
|
try {
|
|
throw null;
|
|
expect(false, isTrue); // shouldn't get here
|
|
} catch (e, stack) {
|
|
StringBuffer information = new StringBuffer();
|
|
expect(reportExpectCall(stack, information), 0);
|
|
expect(information.toString(), '');
|
|
}
|
|
});
|
|
}
|