コード例 #1
0
        public void CreerProduit()
        {
            Controleur controleur = new CommandeControleur();

            controleur.CreerUnProduit("Carotte", 500);
            Assert.AreEqual(controleur.GetProduits().Last().Designation, "Carotte");
            Assert.AreEqual(controleur.GetProduits().Last().Prix, 500);
        }