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.
64 lines
1.5 KiB
64 lines
1.5 KiB
// ignore_for_file: cascade_invocations
|
|
|
|
import 'package:flame/components.dart';
|
|
import 'package:flame_forge2d/flame_forge2d.dart';
|
|
import 'package:flame_test/flame_test.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:pinball/game/game.dart';
|
|
|
|
import '../../helpers/helpers.dart';
|
|
|
|
void main() {
|
|
TestWidgetsFlutterBinding.ensureInitialized();
|
|
final flameTester = FlameTester(PinballGameTest.create);
|
|
|
|
group('JetpackRamp', () {
|
|
flameTester.test(
|
|
'loads correctly',
|
|
(game) async {
|
|
final ramp = JetpackRamp(
|
|
position: Vector2.zero(),
|
|
);
|
|
await game.ready();
|
|
await game.ensureAdd(ramp);
|
|
|
|
expect(game.contains(ramp), isTrue);
|
|
},
|
|
);
|
|
|
|
group('children', () {
|
|
flameTester.test(
|
|
'has only one Pathway.arc',
|
|
(game) async {
|
|
final ramp = JetpackRamp(
|
|
position: Vector2.zero(),
|
|
);
|
|
await game.ready();
|
|
await game.ensureAdd(ramp);
|
|
|
|
expect(
|
|
() => ramp.children.singleWhere(
|
|
(component) => component is Pathway,
|
|
),
|
|
returnsNormally,
|
|
);
|
|
},
|
|
);
|
|
|
|
flameTester.test(
|
|
'has a two RampOpenings for the ramp',
|
|
(game) async {
|
|
final ramp = JetpackRamp(
|
|
position: Vector2.zero(),
|
|
);
|
|
await game.ready();
|
|
await game.ensureAdd(ramp);
|
|
|
|
final rampAreas = ramp.children.whereType<RampOpening>();
|
|
expect(rampAreas.length, 2);
|
|
},
|
|
);
|
|
});
|
|
});
|
|
}
|