Simple navigation menu
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Hydroxycarbamide 2022-05-08 16:06:57 +02:00
parent 0df8df88ab
commit 6eb6f9809e
4 changed files with 62 additions and 89 deletions

View file

@ -11,20 +11,20 @@ import 'package:flutter_test/flutter_test.dart';
import 'package:simple_git/main.dart';
void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
testWidgets('Simple navigation test', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
// Verify that our counter starts at 0.
expect(find.text('0'), findsOneWidget);
expect(find.text('1'), findsNothing);
expect(find.text('A'), findsOneWidget);
expect(find.text('B'), findsNothing);
// Tap the '+' icon and trigger a frame.
await tester.tap(find.byIcon(Icons.add));
await tester.tap(find.byIcon(Icons.add_outlined));
await tester.pump();
// Verify that our counter has incremented.
expect(find.text('0'), findsNothing);
expect(find.text('1'), findsOneWidget);
expect(find.text('A'), findsNothing);
expect(find.text('B'), findsOneWidget);
});
}