コード例 #1
0
ファイル: PoubelleTest.java プロジェクト: erwanbrgs/Trisel
 @Test
 public void testSetNature2() {
   poubelle2.setNature(type);
   assertEquals("Get correct : ", type, poubelle2.getNature());
 }
コード例 #2
0
ファイル: PoubelleTest.java プロジェクト: erwanbrgs/Trisel
 @Test
 public void testGetNature2False() {
   assertNotEquals("Get incorrect : ", type, poubelle2.getNature());
 }
コード例 #3
0
ファイル: PoubelleTest.java プロジェクト: erwanbrgs/Trisel
 @Test
 public void testSetNature1() {
   poubelle.setNature(type2);
   assertEquals("Get correct : ", type2, poubelle.getNature());
 }
コード例 #4
0
ファイル: PoubelleTest.java プロジェクト: erwanbrgs/Trisel
 @Test
 public void testGetNature2True() {
   assertEquals("Get correct : ", type2, poubelle2.getNature());
 }