public void Result4() { string str = "Вы проиграли"; TEXT text = new TEXT(); Assert.AreEqual(text.Ishod(1, 3), str); }
public void Result5() { string str = "Вы выиграли"; TEXT text = new TEXT(); Assert.AreEqual(text.Ishod(1, 2), str); }
public void Result3() { string str = "Ничья"; TEXT text = new TEXT(); Assert.AreEqual(text.Ishod(3, 3), str); }