Esempio n. 1
0
        public IAppointment getAppointmentByNameTest([PexAssumeUnderTest] global::BarkNPark.System target, string name)
        {
            IAppointment result = target.getAppointmentByName(name);

            return(result);
            // TODO: add assertions to method SystemTest.getAppointmentByNameTest(System, String)
        }
Esempio n. 2
0
        public IStation getFirstAvailableStationTest([PexAssumeUnderTest] global::BarkNPark.System target)
        {
            IStation result = target.getFirstAvailableStation();

            return(result);
            // TODO: add assertions to method SystemTest.getFirstAvailableStationTest(System)
        }
Esempio n. 3
0
        public string ToStringTest([PexAssumeUnderTest] global::BarkNPark.System target)
        {
            string result = target.ToString();

            return(result);
            // TODO: add assertions to method SystemTest.ToStringTest(System)
        }
Esempio n. 4
0
        public IStation GetStationTest([PexAssumeUnderTest] global::BarkNPark.System target, StationCode code)
        {
            IStation result = target.GetStation(code);

            return(result);
            // TODO: add assertions to method SystemTest.GetStationTest(System, StationCode)
        }
Esempio n. 5
0
        public int CheckoutTest([PexAssumeUnderTest] global::BarkNPark.System target, string name)
        {
            int result = target.Checkout(name);

            return(result);
            // TODO: add assertions to method SystemTest.CheckoutTest(System, String)
        }
Esempio n. 6
0
        public List <IStation> listStationsTest([PexAssumeUnderTest] global::BarkNPark.System target)
        {
            List <IStation> result = target.listStations();

            return(result);
            // TODO: add assertions to method SystemTest.listStationsTest(System)
        }
Esempio n. 7
0
        public int addItemTest(
            [PexAssumeUnderTest] global::BarkNPark.System target,
            string name,
            ItemType[] items
            )
        {
            int result = target.addItem(name, items);

            return(result);
            // TODO: add assertions to method SystemTest.addItemTest(System, String, ItemType[])
        }
Esempio n. 8
0
        public int CheckInTest(
            [PexAssumeUnderTest] global::BarkNPark.System target,
            string name,
            double duration
            )
        {
            int result = target.CheckIn(name, duration);

            return(result);
            // TODO: add assertions to method SystemTest.CheckInTest(System, String, Double)
        }
Esempio n. 9
0
        public int requestextensionTest(
            [PexAssumeUnderTest] global::BarkNPark.System target,
            string name,
            double timeToAdd
            )
        {
            int result = target.requestextension(name, timeToAdd);

            return(result);
            // TODO: add assertions to method SystemTest.requestextensionTest(System, String, Double)
        }
Esempio n. 10
0
        public void listStationsTest800()
        {
            System          system;
            List <IStation> list;

            system = new global::BarkNPark.System();
            list   = this.listStationsTest(system);
            Assert.IsNotNull((object)list);
            Assert.AreEqual <int>(4, list.Capacity);
            Assert.AreEqual <int>(3, list.Count);
            Assert.IsNotNull((object)system);
        }