public void GetCityByName_TestMethod_4()
        {
            //Arrange
            CityRepository repository = new CityRepository(databaseConnection);

            // Act
            var cityList = repository.GetAllWithName("gmd");

            //Assert
            Assert.IsTrue(cityList.ToList().Count == 0);
        }
        public void GetCityByName_TestMethod_3()
        {
            //Arrange
            CityRepository repository = new CityRepository(databaseConnection);

            // Act
            var cityList = repository.GetAllWithName("Zuromin");

            //Assert
            Assert.IsTrue(cityList.First().Name == "Żuromin");
            Assert.IsTrue(cityList.First().Country == "PL");
        }