コード例 #1
0
ファイル: ZoneModelTest.java プロジェクト: JoopAue/BW4T
 @Test
 public void spawnCountStartZoneTest() {
   ZoneModel zm = new ZoneModel();
   zm.setType(Type.CORRIDOR);
   zm.setStartZone(true);
   assertEquals(zm.getSpawnCount(), 4);
 }
コード例 #2
0
ファイル: ZoneModelTest.java プロジェクト: JoopAue/BW4T
 @Test
 public void spawnCountCorridorTest() {
   ZoneModel zm = new ZoneModel();
   zm.setType(Type.CORRIDOR);
   assertEquals(zm.getSpawnCount(), 0);
 }