public void CommandeQuantiteRabais() { var commande = new Commande(); foreach (var p in Produits) { commande.AjouterProduit(p); } commande.AppliquerCouponRabais("HP", 1); Assert.True(commande.ProduitRabais.Count() == 1); }
public void CommandeValid() { var commande = new Commande(); foreach (var p in Produits) { commande.AjouterProduit(p); } commande.AppliquerCouponRabais("HP", 1); Assert.True(commande.Valid); }
public void CommandeVerifierTotales() { var commande = new Commande(); foreach (var p in Produits) { commande.AjouterProduit(p); } commande.AppliquerCouponRabais("HP", 1); var totalAvecRebais = commande.getTotalAvecCouponRabais(); var total = commande.getTotal(); Assert.True(total > totalAvecRebais); }