mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-18 23:32:08 -08:00
Removed useless name mapping / Cleanup
This commit is contained in:
parent
ad059cbc38
commit
6c8d80777c
13 changed files with 251 additions and 212 deletions
|
|
@ -194,8 +194,8 @@ public class ApplicationTests{
|
|||
resetWorld();
|
||||
SaveIO.loadFromSlot(0);
|
||||
|
||||
assertEquals(world.width(), map.meta.width);
|
||||
assertEquals(world.height(), map.meta.height);
|
||||
assertEquals(world.width(), map.width);
|
||||
assertEquals(world.height(), map.height);
|
||||
assertTrue(state.teams.get(defaultTeam).cores.size > 0);
|
||||
}
|
||||
|
||||
|
|
|
|||
11
tests/src/test/java/MapTests.java
Normal file
11
tests/src/test/java/MapTests.java
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import org.junit.jupiter.api.BeforeAll;
|
||||
|
||||
public class MapTests{
|
||||
|
||||
@BeforeAll
|
||||
static void launchApplication(){
|
||||
ApplicationTests.launchApplication();
|
||||
}
|
||||
|
||||
//TODO
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue