addgetterand setters on tests

This commit is contained in:
JunkJumper 2019-08-08 21:49:29 +02:00
parent d3ceb339a5
commit 6e16a1eb9e

View File

@ -30,14 +30,14 @@ class testGeneraux {
public void initialisation() {
e = new Echiquier();
jb = new Joueur("Joueur Blanc","Blanc");
jn = new Joueur("Joueur Noir", "Noir");
setJn(new Joueur("Joueur Noir", "Noir"));
}
@AfterEach
public void netoyage () {
e = null;
jb = null;
jn = null;
setJn(null);
}
@Test
@ -91,6 +91,14 @@ class testGeneraux {
assertFalse(e.getCavalierB1().aBouge());
}
public Joueur getJn() {
return jn;
}
public void setJn(Joueur jn) {
this.jn = jn;
}
/*@Test
public void testEchec () {