コード例 #1
0
ファイル: UnitTest1.cs プロジェクト: homebox50/QALab06
        public void testO()
        {
            tictactoe foo = new tictactoe();

            foo.changePlayer();
            Assert.AreEqual('o', foo.currentPlayer());
        }
コード例 #2
0
ファイル: UnitTest1.cs プロジェクト: homebox50/QALab06
        public void placementTestO()
        {
            tictactoe foo = new tictactoe();

            foo.createBoard();
            foo.changePlayer();
            foo.makeMove(0, 0, foo.currentPlayer());
            Assert.AreEqual(foo.board[0, 0], 'o');
        }