Example #1
0
        public void testGetMovie()
        {
            Movie m = new Movie("b", Movie.STANDARD);
              Rental r = new Rental(m, 5);

              Assert.AreEqual(m, r.getMovie());
        }
Example #2
0
 public void addRental(Rental arg)
 {
     rentals.Add(arg);
 }