16 lines
465 B
Dart
16 lines
465 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:gps/widgets/gps_position_widget_bloc.dart';
|
|
import 'package:gps/widgets/gps_title_widget_bloc.dart';
|
|
|
|
import '../lib/gps_bloc_app.dart';
|
|
|
|
void main() {
|
|
testWidgets('GPS smoke test', (WidgetTester tester) async {
|
|
// await tester.pumpWidget(const GpsBlocApp());
|
|
|
|
// expect(find.byType(GpsTitleWidgetBloc), findsOneWidget);
|
|
// expect(find.byType(GpsPositionWidget), findsOneWidget);
|
|
|
|
});
|
|
}
|