Skip to content

Commit 0e8cc0d

Browse files
author
Vyacheslav
committed
feat:
Helper tests: + Test IsNullable #14
1 parent 5b01b44 commit 0e8cc0d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Src/Tests/HelperFixture.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,5 +318,13 @@ public void GetRefPropertyValueTest()
318318
wrap2.Dispose();
319319
}
320320
}
321+
322+
[Test]
323+
public void IsNullableTest()
324+
{
325+
Assert.That(HelpStruct2Helper.IsNullable(), Is.EqualTo(false));
326+
Assert.That(HelpStructHelper.IsNullable(), Is.EqualTo(false));
327+
Assert.That(HelpClassHelper.IsNullable(), Is.EqualTo(true));
328+
}
321329
}
322330
}

0 commit comments

Comments
 (0)