public void IsSpecialValue_Null() { bool isSpecialValue = RowTestFramework.IsSpecialValue(null); Assert.That(isSpecialValue, Is.False); }
public void IsSpecialValue_True() { bool isSpecialValue = RowTestFramework.IsSpecialValue(SpecialValue.Null); Assert.That(isSpecialValue, Is.True); }