public void GetPrixTotal_apply_10_percent_discount_when_total_great_than_1000() { var sut = new Panier(); sut.ApplyDiscount(new Get_10_Percent_Discount_When_Total_Price_Great_Than_1000()); sut.AddItem(new Article { PrixUnitaire = 100, Nombre = 11 }); Assert.Equal(1100 - (1100 * 10m / 100), sut.GetPrixTotal()); }