Asserts that the value is empty.
AssertException otherwise
assertEmpty([]); auto exception = expectThrows!AssertException(assertEmpty([1, 2, 3])); assertEquals("Assertion failure", exception.msg);
See Implementation
Asserts that the value is empty.