diff --git a/.gitignore b/.gitignore index 04be087..1913f73 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ #pour netbeans Libraries/* -Test Libraries/* \ No newline at end of file +Test Libraries/* +/nbproject/private/ diff --git a/src/Test.java b/src/Test.java new file mode 100644 index 0000000..4b87720 --- /dev/null +++ b/src/Test.java @@ -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); + + } + +}