Methods for runtime checks.
|
true(actual, msg) @public | Throws an exception when actual is FALSE.
|
|
false(actual, msg) @public | Throws an exception when actual is TRUE.
|
|
notNil<Tp>(p, msg) @public | Throws an exception when p is NIL
|
|
isNil<Tp>(p, msg) @public | Throws an exception when p is not NIL
|
|
notEmpty(p, msg) @public | Throws an exception when p is an empty string.
|
|
equal(expected, actual, msg) @public | Throws an exception when expected and actual are not equal.
|
|
equal(expected, actual, msg) @public | Throws an exception when expected and actual are not equal.
|
|
equal(expected, actual, msg) @public | Throws an exception when expected and actual are not equal.
|
|
equalShort(expected, actual, msg) @public | Throws an exception when expected and actual are not equal.
|
|
equal(expected, actual, msg) @public | Throws an exception when expected and actual are not equal.
|
|
equal(expected, actual, msg) @public | Throws an exception when expected and actual are not equal.
|
|
equal(expected, actual, msg) @public | Throws an exception when expected and actual are not equal.
|
|
inRange(n, min, max, msg) @public | Throws an exception when n < min and when n > max.
|
|