1
0
mirror of https://github.com/inf112-v20/Fiasko.git synced 2025-03-04 17:19:45 +01:00

Fikset import og konstruktør

This commit is contained in:
Steinar Aalstad Lillesund 2020-04-06 16:17:04 +02:00
parent 37912a8ebb
commit 63188b2abb

@ -5,12 +5,14 @@ import static org.junit.Assert.assertTrue;
import org.junit.Before;
import org.junit.Test;
import java.util.ArrayList;
public class RoboRallyGameTest {
private IDrawableGame game;
@Before
public void setUp() {
game = new RoboRallyGame();
game = new RoboRallyGame(new ArrayList<>());
}
@Test