Example #1
0
        public void TestRoadHasVehicle()
        {
            IRoad    road = new Road();
            IVehicle bus  = new VehicleBus();

            road.AddVehicle(bus);

            bool result = road.HasVehicle(bus);

            Assert.IsTrue(result);
        }
Example #2
0
        public void TestAccessOfPassengers()
        {
            IVehicle bus         = new VehicleBus();
            IPerson  civilian    = new Person(Constants.PERSON_TYPE_COMMON);
            IPerson  police      = new Person(Constants.PERSON_TYPE_POLICE);
            IPerson  firefighter = new Person(Constants.PERSON_TYPE_FIREFIGHTER);

            Assert.IsTrue(bus.CheckPersonAccess(civilian));
            Assert.IsTrue(bus.CheckPersonAccess(police));
            Assert.IsTrue(bus.CheckPersonAccess(firefighter));
        }
Example #3
0
        public void TestAddVehicleToRoad()
        {
            IRoad    road = new Road();
            IVehicle bus  = new VehicleBus();

            int count = road.GetVehiclesAmount();

            Assert.AreEqual(0, count);

            road.AddVehicle(bus);

            Assert.IsTrue(road.GetVehiclesAmount() == 1);
        }
Example #4
0
        public void TestAmountOfFreePlaces()
        {
            IVehicle bus         = new VehicleBus();
            IPerson  civilian    = new Person(Constants.PERSON_TYPE_COMMON);
            IPerson  police      = new Person(Constants.PERSON_TYPE_POLICE);
            IPerson  firefighter = new Person(Constants.PERSON_TYPE_FIREFIGHTER);
            IPerson  civilian2   = new Person(Constants.PERSON_TYPE_COMMON);
            IPerson  civilian3   = new Person(Constants.PERSON_TYPE_COMMON);

            bus.AddPassenger(civilian);
            bus.AddPassenger(civilian2);
            bus.AddPassenger(civilian3);
            bus.AddPassenger(police);
            bus.AddPassenger(firefighter);

            Assert.IsTrue(bus.HasFreePlace());
            Assert.AreEqual(5, bus.GetAmountPassengers());
            Assert.AreEqual(Constants.VEHICLE_BUS_LIMIT - 5, bus.GetAmountOfFreePlaces());
        }
Example #5
0
        public void TestCreateVehicleAndPassengers()
        {
            IRoad road = new Road();

            IVehicle bus        = new VehicleBus();
            IVehicle taxi       = new VehicleCarTaxi();
            IVehicle police     = new VehicleCarPolice();
            IVehicle fireEngine = new VehicleCarFireFighter();

            IPerson p_common_1 = new Person(Constants.PERSON_TYPE_COMMON);
            IPerson p_common_2 = new Person(Constants.PERSON_TYPE_COMMON);
            IPerson p_common_3 = new Person(Constants.PERSON_TYPE_COMMON);
            IPerson p_common_4 = new Person(Constants.PERSON_TYPE_COMMON);
            IPerson p_common_5 = new Person(Constants.PERSON_TYPE_COMMON);
            IPerson p_common_6 = new Person(Constants.PERSON_TYPE_COMMON);

            IPerson p_police_1 = new Person(Constants.PERSON_TYPE_POLICE);
            IPerson p_police_2 = new Person(Constants.PERSON_TYPE_POLICE);
            IPerson p_police_3 = new Person(Constants.PERSON_TYPE_POLICE);
            IPerson p_police_4 = new Person(Constants.PERSON_TYPE_POLICE);
            IPerson p_police_5 = new Person(Constants.PERSON_TYPE_POLICE);

            IPerson p_ff_1 = new Person(Constants.PERSON_TYPE_FIREFIGHTER);
            IPerson p_ff_2 = new Person(Constants.PERSON_TYPE_FIREFIGHTER);
            IPerson p_ff_3 = new Person(Constants.PERSON_TYPE_FIREFIGHTER);
            IPerson p_ff_4 = new Person(Constants.PERSON_TYPE_FIREFIGHTER);
            IPerson p_ff_5 = new Person(Constants.PERSON_TYPE_FIREFIGHTER);
            IPerson p_ff_6 = new Person(Constants.PERSON_TYPE_FIREFIGHTER);

            bus.AddPassenger(p_common_1);
            bus.AddPassenger(p_common_2);
            bus.AddPassenger(p_common_3);
            bus.AddPassenger(p_common_4);
            bus.AddPassenger(p_police_4);

            taxi.AddPassenger(p_common_5);
            taxi.AddPassenger(p_common_6);
            taxi.AddPassenger(p_ff_6);
            taxi.AddPassenger(p_police_5);

            police.AddPassenger(p_police_1);
            police.AddPassenger(p_police_2);
            police.AddPassenger(p_police_3);

            fireEngine.AddPassenger(p_ff_1);
            fireEngine.AddPassenger(p_ff_2);
            fireEngine.AddPassenger(p_ff_3);
            fireEngine.AddPassenger(p_ff_4);
            fireEngine.AddPassenger(p_ff_5);

            road.AddVehicle(bus);
            road.AddVehicle(taxi);
            road.AddVehicle(police);
            road.AddVehicle(fireEngine);

            Assert.IsTrue(road.HasVehicle(bus));
            Assert.IsTrue(road.HasVehicle(police));
            Assert.IsTrue(road.HasVehicle(fireEngine));

            var ex = Assert.Throws <RoadHasVehicleException>(() => road.AddVehicle(bus));

            Assert.IsTrue(ex is RoadHasVehicleException);

            int count = road.GetCountOfPersons();

            Assert.AreEqual(17, count);

            road.RemoveVehicle(fireEngine);
            Assert.IsFalse(road.HasVehicle(fireEngine));
        }
Example #6
0
        public void TestListOfAllowedPassenfers()
        {
            IVehicle bus = new VehicleBus();

            Assert.IsTrue(bus.GetAllovedTypesOfPassengers().Count > 0);
        }
Example #7
0
        public void TestPassengersLimit()
        {
            IVehicle bus = new VehicleBus();

            Assert.AreEqual(Constants.VEHICLE_BUS_LIMIT, bus.GetLimit());
        }