Flytter noen klasser og tar ibruk RoboRallyLauncher. Closes #20

Flytter IDrawableGame og RoboRallyGame (tidligere Game) til Objects
Korrigerer navn i RoboRallyGameTest (tidligere GameTest)
Korrigerer pakkeendringer i IOUtil
This commit is contained in:
2020-03-02 18:46:45 +01:00
parent 6f26ec6307
commit c53a4cb8d6
5 changed files with 14 additions and 18 deletions

View File

@ -1,15 +1,18 @@
package inf112.fiasko.roborally.game;
package inf112.fiasko.roborally.game_wrapper;
import static org.junit.Assert.assertTrue;
import inf112.fiasko.roborally.objects.IDrawableGame;
import inf112.fiasko.roborally.objects.RoboRallyGame;
import org.junit.Before;
import org.junit.Test;
public class GameTest {
public class RoboRallyGameTest {
private IDrawableGame game;
@Before
public void setUp() {
game = new Game();
game = new RoboRallyGame();
}
@Test