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

View File

@ -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