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.
22 lines
495 B
22 lines
495 B
import 'package:flame_test/flame_test.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:pinball/game/game.dart';
|
|
|
|
import 'helpers.dart';
|
|
|
|
FlameTester<PinballGame> flameBlocTester({
|
|
required GameBloc gameBloc,
|
|
}) {
|
|
return FlameTester<PinballGame>(
|
|
PinballGameTest.create,
|
|
pumpWidget: (gameWidget, tester) async {
|
|
await tester.pumpWidget(
|
|
BlocProvider.value(
|
|
value: gameBloc,
|
|
child: gameWidget,
|
|
),
|
|
);
|
|
},
|
|
);
|
|
}
|