81 lines
2.3 KiB
Java
81 lines
2.3 KiB
Java
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/UnitTests/JUnit4TestClass.java to edit this template
|
|
*/
|
|
package com.mycompany.bibliotheque.Contrôle;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import static org.junit.Assert.*;
|
|
|
|
/**
|
|
*
|
|
* @author dthev
|
|
*/
|
|
public class LivreValideTest {
|
|
|
|
public LivreValideTest() {
|
|
}
|
|
|
|
@Before
|
|
public void setUp() {
|
|
}
|
|
|
|
/**
|
|
* Test of isValidIsbn method, of class LivreValide.
|
|
*/
|
|
@Test
|
|
public void testIsValidIsbn() {
|
|
System.out.println("isValidIsbn");
|
|
String isbn = "";
|
|
boolean expResult = false;
|
|
boolean result = LivreValide.isValidIsbn(isbn);
|
|
assertEquals(expResult, result);
|
|
// TODO review the generated test code and remove the default call to fail.
|
|
fail("The test case is a prototype.");
|
|
}
|
|
|
|
/**
|
|
* Test of isValidTitre method, of class LivreValide.
|
|
*/
|
|
@Test
|
|
public void testIsValidTitre() {
|
|
System.out.println("isValidTitre");
|
|
String Titre = "";
|
|
boolean expResult = false;
|
|
boolean result = LivreValide.isValidTitre(Titre);
|
|
assertEquals(expResult, result);
|
|
// TODO review the generated test code and remove the default call to fail.
|
|
fail("The test case is a prototype.");
|
|
}
|
|
|
|
/**
|
|
* Test of isValidAuteur method, of class LivreValide.
|
|
*/
|
|
@Test
|
|
public void testIsValidAuteur() {
|
|
System.out.println("isValidAuteur");
|
|
String auteur = "";
|
|
boolean expResult = false;
|
|
boolean result = LivreValide.isValidAuteur(auteur);
|
|
assertEquals(expResult, result);
|
|
// TODO review the generated test code and remove the default call to fail.
|
|
fail("The test case is a prototype.");
|
|
}
|
|
|
|
/**
|
|
* Test of isLongueurTitreValid method, of class LivreValide.
|
|
*/
|
|
@Test
|
|
public void testIsLongueurTitreValid() {
|
|
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.");
|
|
}
|
|
|
|
}
|