Exemplo n.º 1
0
        public void TestReductionTarif1()
        {
            TypeAdhesion t = new TypeAdhesion(1, "loisir", 12);
            //On applique une réduction de 20% au tarif.
            t.ReductionTarif(20);

            //le tarif doit maintenant être égal à 10 en arrondissant.
            Assert.AreEqual(t.Tarif, 10);
        }