rajout méthode testIsContenuTitreValid à compléter

This commit is contained in:
2025-10-02 21:50:36 +02:00
parent 3f63db1a92
commit 1f44c6ee69

View File

@@ -114,4 +114,15 @@ public class LivreValideTest {
fail("The test case is a prototype."); fail("The test case is a prototype.");
} }
@Test
public void testIsContenuTitreValid() {
System.out.println("isLongueurTitreValid");
String titre = "";
boolean expResult = false;
boolean result = LivreValide.isLongueurTitreValid(titre);
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
} }