Ejemplo n.º 1
0
        public void TestMethod_SearchCity_2()
        {
            Game game = new Game();

            game.Load();
            bool rezult = game.SearchCity("киев");

            Assert.AreEqual(false, rezult);
        }
Ejemplo n.º 2
0
        public void TestMethod_SearchCity_1()
        {
            Game game = new Game();

            game.Load();
            bool rezult = game.SearchCity("москва");

            Assert.AreEqual(true, rezult);
        }