10 lines
274 B
Dart
10 lines
274 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:star_taxi_apk_test/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('app starts', (tester) async {
|
|
await tester.pumpWidget(const StarTaxiApp());
|
|
expect(find.textContaining('Star Taxi'), findsWidgets);
|
|
});
|
|
}
|