1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

Migrate testing_app to go_router (#1541)

* add go_router

* migrate testing_app to go_router
This commit is contained in:
Miguel Beltran
2022-12-20 17:53:39 +01:00
committed by GitHub
parent 329c531dfc
commit 616aa8d6be
5 changed files with 39 additions and 11 deletions

View File

@@ -5,13 +5,13 @@
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:provider/provider.dart';
import 'package:testing_app/main.dart';
import 'package:testing_app/models/favorites.dart';
import 'package:testing_app/screens/home.dart';
Widget createHomeScreen() => ChangeNotifierProvider<Favorites>(
create: (context) => Favorites(),
child: const MaterialApp(
home: HomePage(),
child: MaterialApp.router(
routerConfig: router(),
),
);
@@ -65,5 +65,16 @@ void main() {
// Check if the filled icon changes back to bordered icon.
expect(find.byIcon(Icons.favorite), findsNothing);
});
testWidgets('Testing Navigation', (tester) async {
await tester.pumpWidget(createHomeScreen());
// Tap the Favorites button in the app bar
await tester.tap(find.text('Favorites'));
await tester.pumpAndSettle();
// Verify if the empty favorites screen is shown.
expect(find.text('No favorites added.'), findsOneWidget);
});
});
}