コード例 #1
0
ファイル: GoblinTest.java プロジェクト: Relkco/P1COO
 /** Test of the isAlive method */
 @Test
 public void testIsAlive() {
   assertTrue(monster.isAlive());
   monster.takeDamage(31);
   assertFalse(monster.isAlive());
 }