Ejemplo n.º 1
0
        public void RentOfRegularMovieFor10DaysShouldBe14()
        {
            var rent = new RegularMovieRent();

            Assert.AreEqual(14, rent.RentFor(10));
        }
Ejemplo n.º 2
0
 public RegularMovie(string title)
 {
     Title = title;
     Rent  = new RegularMovieRent();
 }