Ejemplo n.º 1
0
        public void TestCustomerListPriceSum()
        {
            //Arrange
            Customer c = new Customer();

            OresundCar      oCar1 = new OresundCar();
            WeekendDiscount sCar1 = new WeekendDiscount();
            Car             car1  = new Car();
            MC        mc1         = new MC();
            OresundMC oMC         = new OresundMC();


            //Act
            oCar1.Price(false);
            sCar1.WeekendDiscountCar(false);
            car1.Price(true);
            mc1.Price(false);
            oMC.Price(true);
            c.TripsList.Add(oCar1);
            c.TripsList.Add(sCar1);
            c.TripsList.Add(car1);
            c.TripsList.Add(mc1);
            c.TripsList.Add(oMC);

            double totalPrice = c.TotalPriceOfAllTrips();

            //Assert
            Assert.AreEqual(1028, totalPrice);
        }
Ejemplo n.º 2
0
        public void TestCustomerListLength()
        {
            //Arrange
            Customer c = new Customer();

            OresundCar      oCar1 = new OresundCar();
            WeekendDiscount sCar1 = new WeekendDiscount();
            Car             car1  = new Car();
            MC        mc1         = new MC();
            OresundMC oMC         = new OresundMC();


            //Act
            oCar1.Price(false);
            sCar1.WeekendDiscountCar(false);
            car1.Price(true);
            mc1.Price(false);
            oMC.Price(true);
            c.TripsList.Add(oCar1);
            c.TripsList.Add(sCar1);
            c.TripsList.Add(car1);
            c.TripsList.Add(mc1);
            c.TripsList.Add(oMC);

            //Assert
            Assert.AreEqual(5, c.TripsList.Count);
        }
        public void TestOresundCarPrice(bool useBrobizz, double expected)
        {
            //Arrange
            OresundCar car = new OresundCar();

            //Act
            double price = car.Price(useBrobizz);

            //Assert
            Assert.AreEqual(expected, price);
        }