|
|
@ -64,6 +64,22 @@ class GameManagerTest { |
|
|
|
game.Pause(); |
|
|
|
assertTrue(game.isPaused); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
void testGameOverwhenGhostCaughtPlayer() { |
|
|
|
GameManager game = new GameManager(); |
|
|
|
|
|
|
|
game.score = 100; |
|
|
|
game.handleGhostCollision(); |
|
|
|
game.handleGhostCollision(); |
|
|
|
game.handleGhostCollision(); |
|
|
|
int expectedScore = 0; |
|
|
|
|
|
|
|
assertThat(game.score).isEqualTo(expectedScore); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
void GameManager_GostPlayerCollisionTest_DoesntDetectColliosion() { |
|
|
|