public void TestMethod3() { var tickTackToe = new tickTacToe(); tickTackToe.IsDraw = true; Assert.AreEqual(true, tickTackToe.IsDraw); }
public void TestMethod6() { var tickTackToe = new tickTacToe(); tickTackToe.IsColWin = true; Assert.AreEqual(true, tickTackToe.IsColWin); }
public void TestMethod2() { var tickTackToe = new tickTacToe(); tickTackToe.XIsWinner = true; Assert.AreEqual(true, tickTackToe.XIsWinner); }