addgetterand setters on tests
This commit is contained in:
parent
d3ceb339a5
commit
6e16a1eb9e
@ -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 () {
|
||||
|
Loading…
x
Reference in New Issue
Block a user