addgetterand setters on tests
This commit is contained in:
parent
d3ceb339a5
commit
6e16a1eb9e
@ -30,14 +30,14 @@ class testGeneraux {
|
|||||||
public void initialisation() {
|
public void initialisation() {
|
||||||
e = new Echiquier();
|
e = new Echiquier();
|
||||||
jb = new Joueur("Joueur Blanc","Blanc");
|
jb = new Joueur("Joueur Blanc","Blanc");
|
||||||
jn = new Joueur("Joueur Noir", "Noir");
|
setJn(new Joueur("Joueur Noir", "Noir"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@AfterEach
|
@AfterEach
|
||||||
public void netoyage () {
|
public void netoyage () {
|
||||||
e = null;
|
e = null;
|
||||||
jb = null;
|
jb = null;
|
||||||
jn = null;
|
setJn(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@ -92,6 +92,14 @@ class testGeneraux {
|
|||||||
assertFalse(e.getCavalierB1().aBouge());
|
assertFalse(e.getCavalierB1().aBouge());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Joueur getJn() {
|
||||||
|
return jn;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setJn(Joueur jn) {
|
||||||
|
this.jn = jn;
|
||||||
|
}
|
||||||
|
|
||||||
/*@Test
|
/*@Test
|
||||||
public void testEchec () {
|
public void testEchec () {
|
||||||
e.verificationMouvement(jb, "e2", "e4");
|
e.verificationMouvement(jb, "e2", "e4");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user