Esempio n. 1
0
 public ProgramUI(IConsole consoleForAllReadsAndWrites)
 {
     _console    = consoleForAllReadsAndWrites;
     ElectricCar = new ElectricCarBiz();
     GasCar      = new GasCarBiz();
     HybridCar   = new HybridCarBiz();
 }
 public void Arrange()
 {
     _gasCar = new GasCarBiz();
     var    employeeID = 1234;
     string make       = "buzbuz";
     string model      = "smartEcar";
     int    year       = 2000;
     float  numberOfCityMilesPerWeek    = 200;
     float  numberOfHighwayMilesPerWeek = 300;
     int    milesPerCharge = 400;
 }
        public void CreateGasCarWillSucceed()
        {
            var       employeeId = 1234;
            string    make       = "buzbuz";
            string    model      = "smartEcar";
            int       year       = 2000;
            float     numberOfCityMilesPerWeek    = 200;
            float     numberOfHighwayMilesPerWeek = 300;
            int       milesPerGallon = 400;
            GasCarBiz gasCar         = new GasCarBiz();

            var actual = gasCar.CreateGasCar(employeeId, make, model, year, numberOfCityMilesPerWeek,
                                             numberOfHighwayMilesPerWeek, milesPerGallon);

            //Assert.IsInstanceOfType(actual, typeof(ElectricCar));
            Assert.IsInstanceOfType(actual, typeof(GasCar));
        }