Update 'ExamenTests/TestsFournisPileBornee.java'

This commit is contained in:
Luc Dartois 2023-06-21 10:21:19 +02:00
parent 2721ecccfb
commit 8d5e2ce184

View File

@ -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);