MusicAndCo/test/métiers/CommandeTest.java
2024-09-12 11:33:20 +02:00

167 lines
4.9 KiB
Java

/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/UnitTests/JUnit5TestClass.java to edit this template
*/
package métiers;
import java.util.HashMap;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
/**
*
* @author sio
*/
public class CommandeTest {
public CommandeTest() {
}
@BeforeEach
public void setUp() {
}
/**
* Test of ajouter method, of class Commande.
*/
@Test
public void testAjouter() {
System.out.println("ajouter");
Instrument unInstrument = null;
int qte = 0;
Commande instance = null;
boolean expResult = false;
boolean result = instance.ajouter(unInstrument, qte);
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 supprimer method, of class Commande.
*/
@Test
public void testSupprimer() {
System.out.println("supprimer");
Instrument unInstrument = null;
Commande instance = null;
boolean expResult = false;
boolean result = instance.supprimer(unInstrument);
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 getNoCom method, of class Commande.
*/
@Test
public void testGetNoCom() {
System.out.println("getNoCom");
Commande instance = null;
int expResult = 0;
int result = instance.getNoCom();
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 getNoVendeur method, of class Commande.
*/
@Test
public void testGetNoVendeur() {
System.out.println("getNoVendeur");
Commande instance = null;
int expResult = 0;
int result = instance.getNoVendeur();
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 getDateCom method, of class Commande.
*/
@Test
public void testGetDateCom() {
System.out.println("getDateCom");
Commande instance = null;
String expResult = "";
String result = instance.getDateCom();
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 getLesLignes method, of class Commande.
*/
@Test
public void testGetLesLignes() {
System.out.println("getLesLignes");
Commande instance = null;
HashMap<Instrument, Integer> expResult = null;
HashMap<Instrument, Integer> result = instance.getLesLignes();
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 setNoCom method, of class Commande.
*/
@Test
public void testSetNoCom() {
System.out.println("setNoCom");
int noCom = 0;
Commande instance = null;
instance.setNoCom(noCom);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of setNoVendeur method, of class Commande.
*/
@Test
public void testSetNoVendeur() {
System.out.println("setNoVendeur");
int noVendeur = 0;
Commande instance = null;
instance.setNoVendeur(noVendeur);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of setDateCom method, of class Commande.
*/
@Test
public void testSetDateCom() {
System.out.println("setDateCom");
String dateCom = "";
Commande instance = null;
instance.setDateCom(dateCom);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of equals method, of class Commande.
*/
@Test
public void testEquals() {
System.out.println("equals");
Object obj = null;
Commande instance = null;
boolean expResult = false;
boolean result = instance.equals(obj);
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
}