mirror of https://github.com/flutter/pinball.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
425 B
15 lines
425 B
import 'package:flame/game.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:pinball/game/game.dart';
|
|
|
|
import '../../helpers/helpers.dart';
|
|
|
|
void main() {
|
|
group('PinballGamePage', () {
|
|
testWidgets('renders single GameWidget with PinballGame', (tester) async {
|
|
await tester.pumpApp(const PinballGamePage());
|
|
expect(find.byType(GameWidget<PinballGame>), findsOneWidget);
|
|
});
|
|
});
|
|
}
|