diff --git a/ExamenTests/TestsFournisPileBornee.java b/ExamenTests/TestsFournisPileBornee.java index 5d2d4e6..2a58207 100644 --- a/ExamenTests/TestsFournisPileBornee.java +++ b/ExamenTests/TestsFournisPileBornee.java @@ -1,4 +1,4 @@ -import static org.junit.Assert.assertTrue; // import static : une facilité offerte depuis java5 (pas besoin de mettre le préfixe) +import static org.junit.Assert.assertTrue; // import static : une facilite offerte depuis java5 (pas besoin de mettre le préfixe) import static org.junit.Assert.assertFalse; // import static org.junit.Assert.assertEquals; // import static org.junit.Assert.assertNull; // @@ -33,7 +33,7 @@ public class TestsFournisPileBornee{ pb.push(0); } - //On ne peut pas push un nombre négatif + //On ne peut pas push un nombre negatif @Test(expected = IllegalArgumentException.class) public void NonNegativeInteger(){ PileBornee pb=new PileBornee(5);