Fixed typo and imports.

This commit is contained in:
Steinar Aalstad Lillesund 2020-02-27 12:30:25 +01:00
parent cd8905abd9
commit 3add3fa487
4 changed files with 1 additions and 5 deletions

View File

@ -42,5 +42,5 @@ public class PositionTest {
public void equalXandDifferentYIsNotEqual() { assertNotEquals(testPosition1, testPosition6);}
@Test
public void equalYandDifferentYXIsNotEqual() { assertNotEquals(testPosition1, testPosition5);}
public void equalYandDifferentXIsNotEqual() { assertNotEquals(testPosition1, testPosition5);}
}

View File

@ -1,6 +1,5 @@
package inf112.fiasko.roborally.element_properties;
import inf112.fiasko.roborally.element_properties.TileType;
import org.junit.Test;
import java.util.ArrayList;

View File

@ -1,7 +1,5 @@
package inf112.fiasko.roborally.element_properties;
import inf112.fiasko.roborally.element_properties.TileType;
import inf112.fiasko.roborally.element_properties.WallType;
import org.junit.Test;
import java.util.ArrayList;

View File

@ -1,7 +1,6 @@
package inf112.fiasko.roborally.objects;
import inf112.fiasko.roborally.element_properties.Direction;
import inf112.fiasko.roborally.objects.Wall;
import inf112.fiasko.roborally.element_properties.WallType;
import static org.junit.Assert.assertEquals;
import org.junit.Test;