diff --git a/src/test/java/com/mycompany/bibliotheque/LivreValideTest.java b/src/test/java/com/mycompany/bibliotheque/LivreValideTest.java index c963cdf..0e68587 100644 --- a/src/test/java/com/mycompany/bibliotheque/LivreValideTest.java +++ b/src/test/java/com/mycompany/bibliotheque/LivreValideTest.java @@ -114,4 +114,15 @@ public class LivreValideTest { 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."); + } + }