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