Asserts that a condition is false.
AssertException otherwise
assertFalse(false); assertFalse("foo" in ["bar" : "foo"]); auto exception = expectThrows!AssertException(assertFalse(true)); assertEquals("Assertion failure", exception.msg);
See Implementation
Asserts that a condition is false.