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