Esempio 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();
        }
        public void WhenCrossesMakeAMoveToCellC1(string cell)
        {
            var boardPage = new GameBoardPage();

            boardPage.Move(cell);
        }
        public void GivenCrossesMovesFirst()
        {
            var boardPage = new GameBoardPage();

            boardPage.CorssesMoveFirst();
        }
        public void GivenTheGameStatisticsIsCleared()
        {
            var boardPage = new GameBoardPage();

            boardPage.ClearStats();
        }
Esempio n. 5
0
        public void TestMethod1()
        {
            GameBoardPage boardPage = new GameBoardPage();

            boardPage.Show();
        }