public void IsComplete_OutOfRangeValue_ReturnsTrue() { thePart = new GridPart(valuesWith7); bool expected = true; bool actual = thePart.IsComplete(); Assert.That(actual, Is.EqualTo(expected)); }
public void IsComplete_CorrectValues_ReturnsTrue() { thePart = new GridPart(valuesCorrect); bool expected = true; bool actual = thePart.IsComplete(); Assert.That(actual, Is.EqualTo(expected)); }
public void IsComplete_Contains0_ReturnsFalse() { thePart = new GridPart(valuesWith0); bool expected = false; bool actual = thePart.IsComplete(); Assert.That(actual, Is.EqualTo(expected)); }