コード例 #1
0
        public void FirstColumnSecondCell_SetByColumn_SetsFirstColumnSecondCell()
        {
            int setVal = 0;

            goodSudoku.SetByColumn(setVal, 0, 1);

            int actual = goodSudoku.GetByColumn(0, 1);

            Assert.That(actual, Is.EqualTo(setVal));
        }