コード例 #1
0
        public void ShouldJoinTheList()
        {
            GenericListManager <City> listManager = new CityListManager();

            City city1 = new City("Karpacz");
            City city2 = new City("Waszyngton");
            City city3 = new City("Świebodzin");

            listManager.AddElement(city1);

            List <City> anotherList = new List <City>();

            anotherList.Add(city2);
            anotherList.Add(city3);

            listManager.JoinList(anotherList);

            //check that city from another list exists in main list after the join process
            bool result = listManager.CheckElementExists("Waszyngton");

            Assert.IsTrue(result);
        }
コード例 #2
0
        public void ShouldJoinTheList()
        {
            GenericListManager<City> listManager = new CityListManager();

            City city1 = new City("Karpacz");
            City city2 = new City("Waszyngton");
            City city3 = new City("Świebodzin");

            listManager.AddElement(city1);

            List<City> anotherList = new List<City>();
            anotherList.Add(city2);
            anotherList.Add(city3);

            listManager.JoinList(anotherList);

            //check that city from another list exists in main list after the join process
            bool result = listManager.CheckElementExists("Waszyngton");

            Assert.IsTrue(result);
        }