Пример #1
0
        public void Clone_Ok(int[,] cells)
        {
            var board = new GameBoard(cells);
            var clone = board.Clone();

            const int topCornerNumber = 10;

            board.CellsSolution[0, 0] = topCornerNumber;

            Assert.NotEqual(topCornerNumber, clone.CellsSolution[0, 0]);
        }