We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 323a9e2 commit e8fb070Copy full SHA for e8fb070
ReqIFSharp.Tests/AttributeValueTests/AttributeValueXHTMLTestFixture.cs
@@ -159,6 +159,14 @@ public void Verify_Convenience_Value_Property()
159
Assert.That(val, Is.EqualTo(attributeValue.ObjectValue));
160
}
161
162
+ [Test]
163
+ public void Verify_that_when_ObjectValue_is__set_to_null_exception_is_raised_when_setter_is_called()
164
+ {
165
+ var attributeValue = new AttributeValueXHTML();
166
+
167
+ Assert.That(() => attributeValue.ObjectValue = null, Throws.TypeOf<ArgumentNullException>());
168
+ }
169
170
[Test]
171
public void Verify_that_raw_text_can_be_extracted_from_xtml_value()
172
{
0 commit comments