iSeeMultipleWidgets function
Example: Then I see multiple {SomeWidget} widgets
Implementation
Future<void> iSeeMultipleWidgets(
WidgetTester tester,
Type type,
) async {
expect(find.byType(type), findsWidgets);
}
Example: Then I see multiple {SomeWidget} widgets
Future<void> iSeeMultipleWidgets(
WidgetTester tester,
Type type,
) async {
expect(find.byType(type), findsWidgets);
}