Exemplo n.º 1
0
        public void TestMethod2()
        {
            GameBoardPage boardPage = new GameBoardPage();

            boardPage.Show();

            GameBoard board = new GameBoard();

            board.AddRange(new string[]
                           { "x", "o", "x",
                             "", "x", "",
                             "o", "", "" });
            board.Set();
        }
Exemplo n.º 2
0
        public void TestMethod1()
        {
            GameBoardPage boardPage = new GameBoardPage();

            boardPage.Show();
        }