blob: 6fecbd6719b8f8aeb559815faeb80470c6c1151d (
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 java.util.Vector;
import org.junit.Test;
public class TestTroncon {
Troncon t;
@Test
public void test() {
t= new Troncon(Etape depart, Etape arrivee, int tempsTrajet, Vector<String> rues)
}
}
|