Ejemplo n.º 1
0
        public void IsSpecialValue_Null()
        {
            bool isSpecialValue = RowTestFramework.IsSpecialValue(null);

            Assert.That(isSpecialValue, Is.False);
        }
Ejemplo n.º 2
0
        public void IsSpecialValue_True()
        {
            bool isSpecialValue = RowTestFramework.IsSpecialValue(SpecialValue.Null);

            Assert.That(isSpecialValue, Is.True);
        }