mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
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.
61 lines
1.3 KiB
Dart
61 lines
1.3 KiB
Dart
// Copyright 2015 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';
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
ChangerState changer;
|
|
|
|
class Changer extends StatefulWidget {
|
|
Changer(this.child);
|
|
|
|
final Widget child;
|
|
|
|
@override
|
|
ChangerState createState() => new ChangerState();
|
|
}
|
|
|
|
class ChangerState extends State<Changer> {
|
|
bool _state = false;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
changer = this;
|
|
}
|
|
|
|
void test() { setState(() { _state = true; }); }
|
|
|
|
@override
|
|
Widget build(BuildContext context) => _state ? new Wrapper(config.child) : config.child;
|
|
}
|
|
|
|
class Wrapper extends StatelessWidget {
|
|
Wrapper(this.child);
|
|
|
|
final Widget child;
|
|
|
|
@override
|
|
Widget build(BuildContext context) => child;
|
|
}
|
|
|
|
class Leaf extends StatefulWidget {
|
|
@override
|
|
LeafState createState() => new LeafState();
|
|
}
|
|
|
|
class LeafState extends State<Leaf> {
|
|
@override
|
|
Widget build(BuildContext context) => new Text("leaf");
|
|
}
|
|
|
|
void main() {
|
|
testWidgets('three-way setState() smoke test', (WidgetTester tester) async {
|
|
await tester.pumpWidget(new Changer(new Wrapper(new Leaf())));
|
|
await tester.pumpWidget(new Changer(new Wrapper(new Leaf())));
|
|
changer.test();
|
|
await tester.pump();
|
|
});
|
|
}
|