ProgressionGeometriqueTest.java
1.09 KB
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
import java.util.*;
import static org.junit.Assert.*;
import org.junit.Test;
public class ProgressionGeometriqueTest {
@Test
public void testConstructeur() throws TestException {
ProgressionGeometrique pg = new ProgressionGeometrique(2, 1);
try{
assertEquals (pg.termes.size(), 1);
}
catch(AssertionError e){
throw new TestException("*****Le premier terme doit etre place dans la liste de termes*****");
}
catch(NoSuchFieldError e) {
throw new TestException("*****La variable d'instance termes doit etre une collection, une ArrayList*****");
}
}
@Test
public void testNext() throws TestException {
ProgressionGeometrique pg = new ProgressionGeometrique(2, 3);
try{
assertEquals (pg.termes.size(), 1);
pg.next();
assertEquals (pg.termes.size(), 2);
assertTrue (pg.getTerme() == 6);
}
catch(AssertionError e){
throw new TestException("*****Erreur dans le calcul de next() ou de getTerme()*****");
}
catch(NoSuchFieldError e) {
throw new TestException("*****La variable d'instance termes doit etre une collection, une ArrayList*****");
}
}
}