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.
61 lines
1.4 KiB
61 lines
1.4 KiB
// ignore_for_file: cascade_invocations
|
|
|
|
import 'package:flame_forge2d/flame_forge2d.dart';
|
|
import 'package:flame_test/flame_test.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:mocktail/mocktail.dart';
|
|
import 'package:pinball/game/game.dart';
|
|
|
|
import '../../helpers/helpers.dart';
|
|
|
|
void main() {
|
|
TestWidgetsFlutterBinding.ensureInitialized();
|
|
final flameTester = FlameTester(TestGame.new);
|
|
|
|
group('Drain', () {
|
|
flameTester.test(
|
|
'loads correctly',
|
|
(game) async {
|
|
final drain = Drain();
|
|
await game.ensureAdd(drain);
|
|
|
|
expect(game.contains(drain), isTrue);
|
|
},
|
|
);
|
|
|
|
flameTester.test(
|
|
'body is static',
|
|
(game) async {
|
|
final drain = Drain();
|
|
await game.ensureAdd(drain);
|
|
|
|
expect(drain.body.bodyType, equals(BodyType.static));
|
|
},
|
|
);
|
|
|
|
flameTester.test(
|
|
'is sensor',
|
|
(game) async {
|
|
final drain = Drain();
|
|
await game.ensureAdd(drain);
|
|
|
|
expect(drain.body.fixtures.first.isSensor, isTrue);
|
|
},
|
|
);
|
|
|
|
test(
|
|
'calls lost on contact with ball',
|
|
() async {
|
|
final drain = Drain();
|
|
final ball = MockControlledBall();
|
|
final controller = MockBallController();
|
|
when(() => ball.controller).thenReturn(controller);
|
|
|
|
drain.beginContact(ball, MockContact());
|
|
|
|
verify(controller.lost).called(1);
|
|
},
|
|
);
|
|
});
|
|
}
|