Lines Matching full:means
33 * @macro uassert_true if @value is true, not assert, means passing.
34 * @macro uassert_false if @value is false, not assert, means passing.
35 * @macro uassert_null if @value is null, not assert, means passing.
36 * @macro uassert_not_null if @value is not null, not assert, means passing.
37 * @macro uassert_int_equal if @a equal to @b, not assert, means passing. Integer type test.
38 * @macro uassert_int_not_equal if @a not equal to @b, not assert, means passing. Integer type test.
39 * @macro uassert_str_equal if @a equal to @b, not assert, means passing. String type test.
40 * @macro uassert_str_not_equal if @a not equal to @b, not assert, means passing. String type test.
41 * @macro uassert_buf_equal if @a equal to @b, not assert, means passing. buf type test.
42 * @macro uassert_buf_not_equal if @a not equal to @b, not assert, means passing. buf type test.
43 * @macro uassert_in_range if @value is in range of min and max, not assert, means passing.
44 * @macro uassert_not_in_range if @value is not in range of min and max, not assert, means passing.