You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
samples/null_safety/null_safe_app/test/widget_test.dart

15 lines
449 B

// This is a basic widget test that tests just the good app code.
import 'package:flutter_test/flutter_test.dart';
import 'package:null_safe_app/goodapp.dart';
void main() {
testWidgets('App smoke test', (tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const GoodMyApp());
// Verify that we have a forecast, or a managed failure.
expect(find.textContaining('Temperature'), findsOneWidget);
});
}