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