|
kaycxx-assert
C++ assertion library
|
Asserts that a boolean value is true.
Use assert_true when the value under test is already a boolean result. Prefer a more specific assertion when the actual intent is equality, ordering, nullness, containment, matching, or exception behavior.
On failure, assert_true(false) throws assertion_error.