Example #1
0
        public void FirstRow_IsValid_ReturnsTrue()
        {
            bool expected = true;

            bool actual = goodSudoku.Row(0).IsValid();

            Assert.That(actual, Is.EqualTo(expected));
        }
Example #2
0
        public void LastRow_IsValid_ReturnsFalse()
        {
            bool expected = false;

            bool actual = badSudoku.Row(3).IsValid();

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