Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class testVoiture {
- public static void main(String[] args) throws Exception {
- Voiture v = new Voiture("193 XR 31");
- Garage albi = new Garage("CUFR Champollion, Albi");
- Garage castres = new Garage("ISIS, Castres");
- v.entreAuGarage(castres);
- Thread.sleep(2000); // attendre 2 secondes
- v.sortDuGarage();
- Thread.sleep(2000); // attendre 2 secondes
- v.entreAuGarage(albi);
- Thread.sleep(2000); // attendre 2 secondes
- v.sortDuGarage();
- Thread.sleep(2000); // attendre 2 secondes
- v.entreAuGarage(castres);
- System.out.printf("La voiture : %s est elle dans un garage? %b\n", v, v.estDansUnGarage());
- // -> true
- Thread.sleep(2000); // attendre 2 secondes
- v.sortDuGarage();
- //v.sortDuGarage();
- // -> Exception : déjà sortie
- v.imprimeGaragesVisites();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement