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