コード例 #1
0
ファイル: TestCompetition.java プロジェクト: Axel-Girard/judo
 @Test
 public void testMdp2() {
   Personne p = new Personne(0, "pseudo", "", "ceinture");
   assertEquals("", p.getMdp());
 }
コード例 #2
0
ファイル: TestCompetition.java プロジェクト: Axel-Girard/judo
 @Test
 public void testMdp3() {
   Personne p = new Personne(-1, "pseudo", null, "ceinture");
   assertEquals(null, p.getMdp());
 }
コード例 #3
0
ファイル: TestCompetition.java プロジェクト: Axel-Girard/judo
 @Test
 public void testMdp1() {
   Personne p = new Personne(1, "pseudo", "mdp", "ceinture");
   assertEquals("mdp", p.getMdp());
 }