flutty_test 0.1.0
flutty_test: ^0.1.0 copied to clipboard
Testing utilities, helpers and matchers for Flutty packages.
flutty_test #
Testing utilities, helpers and matchers for Flutty packages.
Installation #
dev_dependencies:
flutty_test: ^0.1.0
Usage #
import 'package:flutty_test/flutty_test.dart';
void main() {
testWidgets('my widget test', (tester) async {
// Pump a widget wrapped in MaterialApp
await tester.pumpApp(MyWidget());
expect(find.text('Hello'), findsOneWidget);
});
}
API Documentation #
See the API docs for full documentation.