Exemplo n.º 1
0
        public void IsInsideBoardTestNegativeIndex()
        {
            var result = MinesweeperMain.IsInsideBoard(-1, 100);

            Assert.IsFalse(result);
        }
Exemplo n.º 2
0
        public void IsInsideBoardTestValidData()
        {
            var result = MinesweeperMain.IsInsideBoard(1, 100);

            Assert.IsTrue(result);
        }
Exemplo n.º 3
0
        public void IsInsideBoardTestOutsideIndex()
        {
            var result = MinesweeperMain.IsInsideBoard(100, 10);

            Assert.IsFalse(result);
        }