Licensed under the Academic Free License 1.2 http://www.opensource.org/licenses/academic.php
Functions | |
void | bu_assertTrue (String msg, Object cond) |
Throws if the condition is not true. | |
void | bu_assertTrue (Object cond) |
single-argument variant. | |
void | bu_assertFalse (String msg, Object cond) |
Throws if the condition is true. | |
void | bu_assertFalse (Object cond) |
single-argument variant. | |
void | bu_assertEquals (String msg, Object expected, Object actual) |
Throws if the expected and actual are not ==. | |
void | bu_assertEquals (Object expected, Object actual) |
two-argument variant. | |
void | bu_assertState (String statename, String expected, String actual) |
Throws if the expected and actual state values are not ===. |
|
Throws if the expected and actual are not ==. May be called either as (expected, actual) or (msg, expected, actual).
|
|
Throws if the condition is true. May be called either as (cond) or (msg, cond).
|
|
Throws if the expected and actual state values are not ===.
|
|
Throws if the condition is not true. May be called either as (cond) or (msg, cond).
|