From 558c7f786cffae3ce1a20db421be833de805a125 Mon Sep 17 00:00:00 2001 From: sio Date: Thu, 12 Sep 2024 09:23:07 +0200 Subject: [PATCH] =?UTF-8?q?cr=C3=A9ation=20classe=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 ++- src/Test.java | 30 ++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 src/Test.java 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); + + } + +}