Example #1
0
        public void EmpruntSucces()
        {
            Pret pret = adherent.Emprunte(exemplaire1);

            Assert.IsTrue(adherent.Prets.Contains(pret));
            Assert.IsFalse(pret.EstTermine());
            Assert.IsFalse(exemplaire1.EstDisponible());
        }