Esempio n. 1
0
        public void GetLength()
        {
            //arrange
            IBoard board = new Board();

            //act
            int dim1 = board.GetLength(0);
            int dim2 = board.GetLength(1);

            //assert
            Assert.AreEqual(10, dim1);
            Assert.AreEqual(20, dim2);
        }