Compare commits

2 Commits

Author SHA1 Message Date
c62034dc11 màj pour version initiale 2025-09-18 09:05:20 +02:00
aa61421fe3 essai branche 2025-09-18 01:19:04 +02:00

View File

@@ -21,13 +21,13 @@ public class LivreTest {
@Test
public void testGetTitre() {
assertEquals("pb titre","Java Basic", livre.getTitre());
assertEquals("pb titre","J Basic", livre.getTitre());
}
@Test
public void testGetPrixHT() {
// Vérification du prix HT arrondi à 3 décimales
//assertEquals(20.0, livre.getPrixHT(), 0.001);
}
@Test
@@ -47,6 +47,6 @@ public class LivreTest {
@Test
public void testGetPrixTTC() {
// Calcul du prix TTC avec TVA 5.5% arrondi à 2 décimales
//assertEquals(21.1, livre.getPrixTTC(), 0.01);
}
}