Exemple #1
0
        public void TestCellFilled()
        {
            int[,] cellMapp = new int[9, 9];
            cellMapp[0, 0]  = 5;
            var board = new GameBoard(cellMapp);

            Assert.False(board.IsCellNotFilled(0, 0));
            Assert.True(board.IsCellNotFilled(0, 1));
        }