public void Test_Delete() { City newCity = new City("Atlanta"); newCity.Save(); newCity.Delete(); List <City> expected = new List <City> { }; List <City> actual = City.GetAll(); //Assert Assert.Equal(expected, actual); }