Asserts that the value is null.
AssertException otherwise
Object foo = new Object(); assertNull(null); auto exception = expectThrows!AssertException(assertNull(foo)); assertEquals("Assertion failure", exception.msg);
See Implementation
Asserts that the value is null.