Strategy #31

Merged
schrom01 merged 24 commits from Strategy into main 2022-03-25 09:24:21 +01:00
1 changed files with 4 additions and 12 deletions
Showing only changes of commit 7b6fc70e05 - Show all commits

View File

@ -112,22 +112,14 @@ class GameTest {
@Test @Test
void carTurnCorrect() { void carTurnCorrect() {
try { game.doCarTurn(RIGHT);
game.doCarTurn(RIGHT); Assertions.assertEquals(new PositionVector(1, 0), game.getCarVelocity(0));
Assertions.assertEquals(new PositionVector(1, 0), game.getCarVelocity(0));
} catch (PositionVectorNotValidException positionVectorNotValidException) {
positionVectorNotValidException.printStackTrace();
}
} }
@Test @Test
void carCrash() { void carCrash() {
try { game.doCarTurn(PositionVector.Direction.UP);
game.doCarTurn(PositionVector.Direction.UP); Assertions.assertTrue(game.onlyOneCarLeft());
Assertions.assertTrue(game.onlyOneCarLeft());
} catch (PositionVectorNotValidException positionVectorNotValidException) {
positionVectorNotValidException.printStackTrace();
}
} }
} }