예제 #1
0
        public void BoardServiceIntToString(string expectedResult, int[] input, bool expectedIsInsideBoard)
        {
            IBoardService boardService = new BoardService();

            string result = boardService.ConvertColRowToString(input);

            Assert.AreEqual(result, expectedResult);
        }