49443da5
Vincent Benoist
tp avance
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package test;
import static org.junit.Assert.assertTrue;
import org.junit.Before;
import org.junit.Test;
import src.NonDisponibleException;
import src.Ouvrage;
public class OuvrageTest {
public Ouvrage o;
@Before
public void initVals(){
o = new Ouvrage("test","vinz");
}
@Test
public void emprunterValeurEmprunteTest() throws NonDisponibleException{
assertTrue(o.isEmprunte()==false);
o.emprunter();
assertTrue(o.isEmprunte()==true);
}
@Test
public void emprunterValeurCompteurTest() throws NonDisponibleException{
assertTrue(o.getCompteur()==0);
o.emprunter();
assertTrue(o.getCompteur()==1);
}
@Test(expected = NonDisponibleException.class)
public void emprunterExceptionLanceeTest() throws NonDisponibleException{
o.emprunter();
o.emprunter();
}
}
|