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.
72 lines
1.6 KiB
72 lines
1.6 KiB
// ignore_for_file: prefer_const_constructors
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:pinball/game/game.dart';
|
|
|
|
void main() {
|
|
group('GameEvent', () {
|
|
group('BallLost', () {
|
|
test('can be instantiated', () {
|
|
expect(const BallLost(), isNotNull);
|
|
});
|
|
|
|
test('supports value equality', () {
|
|
expect(
|
|
BallLost(),
|
|
equals(const BallLost()),
|
|
);
|
|
});
|
|
});
|
|
|
|
group('Scored', () {
|
|
test('can be instantiated', () {
|
|
expect(const Scored(points: 1), isNotNull);
|
|
});
|
|
|
|
test('supports value equality', () {
|
|
expect(
|
|
Scored(points: 1),
|
|
equals(const Scored(points: 1)),
|
|
);
|
|
expect(
|
|
const Scored(points: 1),
|
|
isNot(equals(const Scored(points: 2))),
|
|
);
|
|
});
|
|
|
|
test(
|
|
'throws AssertionError '
|
|
'when score is smaller than 1', () {
|
|
expect(() => Scored(points: 0), throwsAssertionError);
|
|
});
|
|
});
|
|
|
|
group('BonusLetterActivated', () {
|
|
test('can be instantiated', () {
|
|
expect(const BonusLetterActivated(0), isNotNull);
|
|
});
|
|
|
|
test('supports value equality', () {
|
|
expect(
|
|
BonusLetterActivated(0),
|
|
equals(BonusLetterActivated(0)),
|
|
);
|
|
expect(
|
|
BonusLetterActivated(0),
|
|
isNot(equals(BonusLetterActivated(1))),
|
|
);
|
|
});
|
|
|
|
test(
|
|
'throws assertion error if index is bigger than the word length',
|
|
() {
|
|
expect(
|
|
() => BonusLetterActivated(8),
|
|
throwsAssertionError,
|
|
);
|
|
},
|
|
);
|
|
});
|
|
});
|
|
}
|