Blame view

tp_Test/source/ProgressionHierarchieTest.java 1.52 KB
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
  
  import java.lang.reflect.Modifier;
  import java.util.*;
  
  import static org.junit.Assert.*;
  
  import org.junit.Test;
  public class ProgressionHierarchieTest {
  	@Test
  	public void testAbstractProgression() throws TestException {
  		try{
  			assertTrue (Modifier.isAbstract(Progression.class.getModifiers()));
  		}
  		catch(AssertionError e){
  			throw new TestException("*****La classe Progression doit etre abstraite*****");
  		}
  	}
  	
  	@Test
  	public void testProgressionGeometrique() throws TestException {
  		try{
  			assertTrue (ProgressionGeometrique.class.getDeclaredMethods().length==1);
  			assertTrue (ProgressionGeometrique.class.getDeclaredMethod("next").getReturnType()==void.class);
  		}
  		catch(AssertionError e){
  			throw new TestException("*****Dans la classe ProgressionGeometrique vous ne devez redefinir que next()*****");
  		} catch (NoSuchMethodException e) {
  			throw new TestException("*****Dans la classe ProgressionGeometrique vous ne devez redefinir que next()*****");
  		}
  	}
  	@Test
  	public void testProgressionArithmetique() throws TestException {
  		try{
  			assertTrue (ProgressionArithmetique.class.getDeclaredMethods().length==1);
  			assertTrue (ProgressionArithmetique.class.getDeclaredMethod("next").getReturnType()==void.class);
  		}
  		catch(AssertionError e){
  			throw new TestException("*****Dans la classe ProgressionArithmetique vous ne devez redefinir que next()*****");
  		} catch (NoSuchMethodException e) {
  			throw new TestException("*****Dans la classe ProgressionArithmetique vous ne devez redefinir que next()*****");
  		}
  	}
  }