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