blob: 19820bc2c29ecdfd19ab3750563e1a59d4db5e07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package visites.toTest;
import static org.junit.Assert.*;
import org.junit.Test;
public class TestEtqpe {
Etape e;
@Test
public void test() {
e = new Etape("Mont Saint Michel","Faubourg St Honoré",180,NatureEtape.visiteMonument);
assertTrue(e.estCorrecte());
}
}
|