public void should_return_true_for_a_null_reference() { QuantityValues qv = null; qv.IsNull().ShouldBeTrue(); }
public void should_return_false_otherwise() { QuantityValues qv = new QuantityValues(); qv.IsNull().ShouldBeFalse(); }