From 8d5e2ce184da0d73041ac9c54b836ef907590724 Mon Sep 17 00:00:00 2001 From: Luc Dartois Date: Wed, 21 Jun 2023 10:21:19 +0200 Subject: [PATCH] Update 'ExamenTests/TestsFournisPileBornee.java' --- ExamenTests/TestsFournisPileBornee.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);