création classe test

This commit is contained in:
sio 2024-09-12 09:23:07 +02:00
parent 9a0b3f147b
commit 558c7f786c
2 changed files with 32 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
#pour netbeans
Libraries/*
Test Libraries/*
Test Libraries/*
/nbproject/private/

30
src/Test.java Normal file
View File

@ -0,0 +1,30 @@
import métiers.Commande;
import métiers.Entreprise;
import métiers.Instrument;
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Main.java to edit this template
*/
/**
*
* @author sio
*/
public class Test {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Entreprise lEntreprise=new Entreprise("MusicAndCo");
Instrument instr1=new Instrument(1,"Piano",10, 8300f);
Instrument instr2=new Instrument(2,"Violon",9, 105f);
Instrument instr1=new Instrument(3,"Guitare",8, 575f);
Commande laCommande = new Commande(1,"Thevenot","12/09/2024");
lEntreprise.ajouterCommande(laCommande);
}
}