public void TestMethod_SearchCity_2() { Game game = new Game(); game.Load(); bool rezult = game.SearchCity("киев"); Assert.AreEqual(false, rezult); }
public void TestMethod_SearchCity_1() { Game game = new Game(); game.Load(); bool rezult = game.SearchCity("москва"); Assert.AreEqual(true, rezult); }