mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-22 21:57:58 +07:00
Removed useless name mapping / Cleanup
This commit is contained in:
@ -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
|
||||
}
|
Reference in New Issue
Block a user