test cas1

This commit is contained in:
sio 2024-09-12 11:33:20 +02:00
parent b02b4b8bcf
commit 0680043384

View File

@ -5,12 +5,9 @@
package métiers; package métiers;
import java.util.HashMap; import java.util.HashMap;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*; import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.BeforeAll;
/** /**
* *
@ -21,43 +18,24 @@ public class CommandeTest {
public CommandeTest() { public CommandeTest() {
} }
@BeforeAll
public static void setUpClass() throws Exception {
}
@AfterAll
public static void tearDownClass() throws Exception {
}
@BeforeEach @BeforeEach
public void setUp() { public void setUp() {
} }
@AfterEach
public void tearDown() throws Exception {
}
/** /**
* Test of ajouter method, of class Commande. * Test of ajouter method, of class Commande.
*/ */
@Test @Test
public void testAjouter() { public void testAjouter() {
System.out.println("ajouter"); System.out.println("ajouter");
Instrument unInstrument = null;
int qte = 0;
Commande instance = null; Commande instance = null;
Instrument instr1=new Instrument(1,"Piano",10, 8300f); boolean expResult = false;
Instrument instr2=new Instrument(2,"Violon",9, 105f); boolean result = instance.ajouter(unInstrument, qte);
Instrument instr3=new Instrument(3,"Guitare",8, 575f); assertEquals(expResult, result);
//Cas0 // TODO review the generated test code and remove the default call to fail.
instance.ajouter(instr1, 2); fail("The test case is a prototype.");
// Cas1
instance.ajouter(instr2, 6);
int nbLignesAttendues=2;
int nbLignes=instance.getLesLignes().size();
assertEquals("Cas01 : test nb lignes ",nbLignesAttendues,nbLignes);
} }
/** /**
@ -185,27 +163,4 @@ public class CommandeTest {
fail("The test case is a prototype."); fail("The test case is a prototype.");
} }
private void assertEquals(String test_nb_lignes, int nbLignesAttendues, int i) {
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
private void assertEquals(boolean expResult, boolean result) {
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
private void assertEquals(int expResult, int result) {
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
private void assertEquals(String expResult, String result) {
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
private void assertEquals(HashMap<Instrument, Integer> expResult, HashMap<Instrument, Integer> result) {
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
} }