Fikser gale tester

This commit is contained in:
Kristian Knarvik 2020-02-05 19:07:21 +01:00
parent 643102661c
commit c6ace34812

View File

@ -28,12 +28,12 @@ public class GameTest {
@Test
public void gameHeightIsPositive() {
assertTrue(game.getWidth() > 0);
assertTrue(game.getHeight() > 0);
}
@Test
public void gameHeightIsMaximumFullHD() {
assertTrue(game.getWidth() <= 1080);
assertTrue(game.getHeight() <= 1080);
}
@Test