More tests for saves
This commit is contained in:
@@ -662,6 +662,17 @@ public class ApplicationTests{
|
||||
assertEquals(414, world.height());
|
||||
}
|
||||
|
||||
@Test
|
||||
void load152Save(){
|
||||
resetWorld();
|
||||
SaveIO.load(Core.files.internal("152.msav"));
|
||||
|
||||
assertTrue(Groups.unit.contains(u -> u.type == UnitTypes.scepter));
|
||||
|
||||
assertEquals(2000, world.width());
|
||||
assertEquals(195, world.height());
|
||||
}
|
||||
|
||||
@Test
|
||||
void arrayIterators(){
|
||||
Seq<String> arr = Seq.with("a", "b" , "c", "d", "e", "f");
|
||||
|
||||
Reference in New Issue
Block a user