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

            goodSudoku.SetByRow(setVal, 1, 0);

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

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