ARB
|
#include <arb_assert.h>
#include <arbtools.h>
#include <cstdarg>
#include <cstdlib>
#include <errno.h>
#include <dupstr.h>
Go to the source code of this file.
Classes | |
class | arb_test::str |
class | arb_test::locinfo |
struct | arb_test::StaticCode |
class | arb_test::copy< T > |
class | arb_test::copy< const char * > |
class | arb_test::copy< copy< T > > |
class | arb_test::epsilon_similar |
class | arb_test::containing |
struct | arb_test::expectation |
class | arb_test::asserter |
class | arb_test::debug_asserter |
struct | arb_test::matchable |
struct | arb_test::matcher |
class | arb_test::match_expectation |
class | arb_test::predicate_description |
class | arb_test::predicate< FUNC > |
class | arb_test::FINAL_TYPE< T > |
class | arb_test::value_matcher< T > |
class | arb_test::predicate_matcher< T, FUNC > |
class | arb_test::expectation_group |
struct | arb_test::group_match |
class | arb_test::FINAL_TYPE< T > |
Namespaces | |
arb_test | |
Functions | |
char * | arb_test::val2readable (bool b) |
char * | arb_test::val2readable (int i) |
char * | arb_test::val2hex (int i) |
char * | arb_test::val2readable (long L) |
char * | arb_test::val2hex (long L) |
char * | arb_test::val2readable (size_t z) |
char * | arb_test::val2hex (size_t z) |
char * | arb_test::val2readable (long unsigned u) |
char * | arb_test::val2hex (long unsigned u) |
char * | arb_test::val2readable (double d) |
char * | arb_test::val2readable (unsigned char c) |
char * | arb_test::val2readable (const char *s) |
template<typename T > | |
copy< T > | arb_test::make_copy (const T &t) |
copy< const char * > | arb_test::make_copy (const char *p) |
copy< const char * > | arb_test::make_copy (char *p) |
copy< const char * > | arb_test::make_copy (const unsigned char *p) |
copy< const char * > | arb_test::make_copy (unsigned char *p) |
copy< const char * > | arb_test::make_copy (const signed char *p) |
copy< const char * > | arb_test::make_copy (signed char *p) |
copy< unsigned char > | arb_test::make_copy (char p) |
copy< unsigned char > | arb_test::make_copy (unsigned char p) |
copy< unsigned char > | arb_test::make_copy (signed char p) |
template<typename T > | |
str | arb_test::readable (const copy< T > &v) |
template<typename T > | |
str | arb_test::readableHex (const copy< T > &v) |
template<typename T > | |
bool | arb_test::operator== (const copy< T > &v1, const copy< T > &v2) |
template<typename T > | |
bool | arb_test::operator!= (const copy< T > &v1, const copy< T > &v2) |
template<> | |
bool | arb_test::operator==< const char * > (const copy< const char * > &v1, const copy< const char * > &v2) |
template<typename T > | |
void | arb_test::print (const T &t) |
template<typename T > | |
void | arb_test::print_hex (const T &t) |
template<typename T1 , typename T2 > | |
void | arb_test::print_pair (T1 t1, T2 t2) |
template<typename T1 , typename T2 > | |
void | arb_test::print_hex_pair (T1 t1, T2 t2) |
void | arb_test::print (const char *s) |
void | arb_test::print (char c) |
void | arb_test::print (int i) |
void | arb_test::space () |
void | arb_test::nl () |
void | arb_test::print_indent (int indent) |
void | arb_test::spaced (const char *word) |
void | arb_test::select_spaced (bool first, const char *singular, const char *plural) |
template<typename FUNC > | |
predicate< FUNC > | arb_test::make_predicate (FUNC func, const char *primary, const char *inverse) |
template<typename T > | |
bool | arb_test::equals (const copy< T > &t1, const copy< T > &t2) |
template<typename T > | |
bool | arb_test::less (const copy< T > &t1, const copy< T > &t2) |
template<typename T > | |
bool | arb_test::more (const copy< T > &t1, const copy< T > &t2) |
template<typename T , typename U > | |
const matchable_value< T > | arb_test::make_matchable_value (const U &other, const char *code_) |
template<typename T > | |
const matchable_value< T > | arb_test::CREATE_matchable (const copy< T > &val, const char *code) |
group_matcher | arb_test::all () |
group_matcher | arb_test::none () |
group_matcher | arb_test::atleast (int min) |
group_matcher | arb_test::atmost (int max) |
group_matcher | arb_test::exactly (int amount) |
match_expectation | arb_test::wrong (const expectation &e) |
match_expectation | arb_test::reports_error (const char *error) |
match_expectation | arb_test::doesnt_report_error (const char *error) |
match_expectation | arb_test::reported_error_contains (const char *error, const char *part) |
template<typename T , typename U , typename V > | |
void | arb_test::expect_broken (const arb_test::matchable_value< T > &That, const U &want, const V &got, const char *file, int line) |
Variables | |
const int | arb_test::MAX_GROUP_SIZE = 5 |
#define ENABLE_CRASH_TESTS |
Definition at line 45 of file test_unit.h.
#define __ATTR__REDUCED_OPTIMIZE |
Definition at line 83 of file test_unit.h.
#define __ATTR__NO_GCSE_OPTIMIZE |
Definition at line 84 of file test_unit.h.
#define __ATTR__REDUCED_OPTIMIZE__NO_GCSE __ATTR__REDUCED_OPTIMIZE __ATTR__NO_GCSE_OPTIMIZE |
Definition at line 88 of file test_unit.h.
#define ANY_SETUP "any_env_setup" |
Definition at line 93 of file test_unit.h.
Referenced by been_inside_environment(), and reset_test_local_flags().
#define WITHVALISTFROM | ( | format, | |
CODE | |||
) | do { va_list parg; va_start(parg, format); CODE; va_end(parg); } while(0) |
Definition at line 124 of file test_unit.h.
#define VPRINTFORMAT | ( | format | ) | WITHVALISTFROM(format, vfprintf(stderr, format, parg)) |
Definition at line 125 of file test_unit.h.
#define VCOMPILERMSG | ( | msgtype, | |
format | |||
) | WITHVALISTFROM(format, vcompiler_msg(msgtype, format, parg)) |
Definition at line 126 of file test_unit.h.
Referenced by arb_test::locinfo::if().
Definition at line 423 of file test_unit.h.
Definition at line 424 of file test_unit.h.
#define MATCHABLE_ARGS_UNTYPED | ( | val | ) | val, #val |
Definition at line 1022 of file test_unit.h.
#define MATCHABLE_ARGS_TYPED | ( | val | ) | make_copy(val), #val |
Definition at line 1023 of file test_unit.h.
#define is_equal_to | ( | val | ) | equals_expectation(true, MATCHABLE_ARGS_UNTYPED(val)) |
Definition at line 1025 of file test_unit.h.
Referenced by CommandOutput::Equals(), and CommandOutput::has_checksum().
#define does_differ_from | ( | val | ) | equals_expectation(false, MATCHABLE_ARGS_UNTYPED(val)) |
Definition at line 1026 of file test_unit.h.
#define is_equal_to_NULL | ( | ) | null_expectation(true) |
Definition at line 1028 of file test_unit.h.
#define does_differ_from_NULL | ( | ) | null_expectation(false) |
Definition at line 1029 of file test_unit.h.
#define is_less_than | ( | val | ) | lessThan_expectation(true, MATCHABLE_ARGS_UNTYPED(val)) |
Definition at line 1031 of file test_unit.h.
#define is_more_than | ( | val | ) | moreThan_expectation(true, MATCHABLE_ARGS_UNTYPED(val)) |
Definition at line 1032 of file test_unit.h.
#define is_less_or_equal | ( | val | ) | moreThan_expectation(false, MATCHABLE_ARGS_UNTYPED(val)) |
Definition at line 1034 of file test_unit.h.
#define is_more_or_equal | ( | val | ) | lessThan_expectation(false, MATCHABLE_ARGS_UNTYPED(val)) |
Definition at line 1035 of file test_unit.h.
#define fulfills | ( | pred, | |
arg | |||
) | predicate_expectation(true, MATCHABLE_ARGS_UNTYPED(pred), MATCHABLE_ARGS_UNTYPED(arg)) |
Definition at line 1037 of file test_unit.h.
#define contradicts | ( | pred, | |
arg | |||
) | predicate_expectation(false, MATCHABLE_ARGS_UNTYPED(pred), MATCHABLE_ARGS_UNTYPED(arg)) |
Definition at line 1038 of file test_unit.h.
#define does_contain | ( | val | ) | fulfills(containing(),val) |
Definition at line 1040 of file test_unit.h.
Referenced by CommandOutput::Contains().
#define doesnt_contain | ( | val | ) | contradicts(containing(),val) |
Definition at line 1041 of file test_unit.h.
#define that | ( | thing | ) | CREATE_matchable(MATCHABLE_ARGS_TYPED(thing)) |
Definition at line 1043 of file test_unit.h.
Referenced by CommandOutput::Contains(), arb_test::doesnt_report_error(), CommandOutput::Equals(), CommandOutput::has_checksum(), arb_test::reported_error_contains(), and arb_test::reports_error().
#define TEST_EXPECTATION | ( | EXPCTN | ) | do { using namespace arb_test; asserter(EXPCTN, #EXPCTN, __FILE__, __LINE__).expect_that(); } while(0) |
Definition at line 1048 of file test_unit.h.
#define TEST_EXPECTATION__BROKEN_SIMPLE | ( | EXPCTN | ) | do { using namespace arb_test; asserter(EXPCTN, #EXPCTN, __FILE__, __LINE__).expect_broken(); } while(0) |
Definition at line 1049 of file test_unit.h.
#define TEST_EXPECTATION__BROKEN_AT_LOC | ( | WANTED, | |
GOT, | |||
FILE, | |||
LINE | |||
) | do { using namespace arb_test; asserter(WANTED, #WANTED, FILE, LINE).expect_broken(); asserter(GOT, #GOT, FILE, LINE).expect_that(); } while(0) |
Definition at line 1050 of file test_unit.h.
Referenced by arb_test::expect_broken().
#define TEST_EXPECTATION__BROKEN | ( | WANTED, | |
GOT | |||
) | TEST_EXPECTATION__BROKEN_AT_LOC(WANTED, GOT, __FILE__, __LINE__) |
Definition at line 1051 of file test_unit.h.
#define TEST_EXPECTATION__WANTED | ( | EXPCTN | ) | do { using namespace arb_test; asserter(EXPCTN, #EXPCTN, __FILE__, __LINE__).expect_wanted_behavior(); } while(0) |
Definition at line 1052 of file test_unit.h.
#define TEST_EXPECTATION__BROKENIF | ( | COND, | |
EXPCTN | |||
) | do { using namespace arb_test; asserter(EXPCTN, #EXPCTN, __FILE__, __LINE__).expect_brokenif(COND,#COND); } while(0) |
Definition at line 1054 of file test_unit.h.
#define DEBUG_TEST_EXPECTATION | ( | EXPCTN | ) |
Definition at line 1056 of file test_unit.h.
#define HERE arb_test::locinfo(__FILE__, __LINE__) |
Definition at line 1066 of file test_unit.h.
#define TEST_WARNING | ( | format, | |
strarg | |||
) | HERE.warningf(format, (strarg)) |
Definition at line 1068 of file test_unit.h.
#define TEST_WARNING2 | ( | format, | |
strarg1, | |||
strarg2 | |||
) | HERE.warningf(format, (strarg1), (strarg2)) |
Definition at line 1069 of file test_unit.h.
#define TEST_ERROR | ( | format, | |
strarg | |||
) | HERE.errorf(true, format, (strarg)) |
Definition at line 1070 of file test_unit.h.
#define TEST_ERROR2 | ( | format, | |
strarg1, | |||
strarg2 | |||
) | HERE.errorf(true, format, (strarg1), (strarg2)) |
Definition at line 1071 of file test_unit.h.
Definition at line 1072 of file test_unit.h.
#define TEST_FAILS_INSIDE_VALGRIND | ( | THETEST | ) |
Definition at line 1076 of file test_unit.h.
#define TEST_EXPECT_ZERO | ( | cond | ) | TEST_EXPECT_EQUAL(cond, 0) |
Definition at line 1085 of file test_unit.h.
#define TEST_EXPECT_ZERO__BROKEN | ( | cond, | |
got | |||
) | TEST_EXPECT_EQUAL__BROKEN(cond, 0, got) |
Definition at line 1086 of file test_unit.h.
#define TEST_REJECT_ZERO | ( | cond | ) | TEST_EXPECTATION(that(cond).does_differ_from(0)) |
Definition at line 1087 of file test_unit.h.
#define TEST_REJECT_ZERO__BROKEN | ( | cond | ) | TEST_EXPECTATION__BROKEN_SIMPLE(that(cond).does_differ_from(0)) |
Definition at line 1088 of file test_unit.h.
#define TEST_EXPECT_ZERO_OR_SHOW_ERRNO | ( | iocond | ) |
Definition at line 1090 of file test_unit.h.
Referenced by Flag::lower(), ptserver(), ptserver_gene(), Globals::setup_test_precondition(), and UnitTester::UnitTester().
#define MISSING_TEST | ( | description | ) | TEST_WARNING("Missing test '%s'", #description) |
Definition at line 1098 of file test_unit.h.
#define TEST_EXPECT_ERROR_CONTAINS | ( | call, | |
part | |||
) | TEST_EXPECTATION (reported_error_contains(call, part)) |
Definition at line 1114 of file test_unit.h.
#define TEST_EXPECT_ERROR_CONTAINS__BROKEN | ( | call, | |
part | |||
) | instead_use__TEST_EXPECT_ANY_ERROR__BROKEN__or__TEST_EXPECT_ERROR_CONTAINS |
Definition at line 1115 of file test_unit.h.
#define TEST_EXPECT_ANY_ERROR | ( | call | ) | TEST_EXPECTATION (reports_error(call)) |
Definition at line 1116 of file test_unit.h.
#define TEST_EXPECT_ANY_ERROR__BROKEN | ( | call | ) | TEST_EXPECTATION__BROKEN_SIMPLE(reports_error(call)) |
Definition at line 1117 of file test_unit.h.
#define TEST_EXPECT_NO_ERROR | ( | call | ) | TEST_EXPECTATION (doesnt_report_error(call)) |
Definition at line 1118 of file test_unit.h.
Referenced by ptserver(), ptserver_gene(), and test_ptserver_activate().
#define TEST_EXPECT_NO_ERROR__BROKEN | ( | call | ) | TEST_EXPECTATION__BROKEN_SIMPLE(doesnt_report_error(call)) |
Definition at line 1119 of file test_unit.h.
#define TEST_EXPECT_NO_SEGFAULT | ( | cb | ) | TEST_EXPECTATION(expect_callback(cb, DOESNT_SEGFAULT, FULFILLS_ASSERTIONS, CALL_WONT_SEGFAULT)) |
Definition at line 1250 of file test_unit.h.
#define TEST_EXPECT_NO_SEGFAULT__WANTED | ( | cb | ) | TEST_EXPECTATION__WANTED(expect_callback(cb, DOESNT_SEGFAULT, FULFILLS_ASSERTIONS, CALL_WILL_SEGFAULT)) |
Definition at line 1251 of file test_unit.h.
#define TEST_EXPECT_CODE_ASSERTION_FAILS | ( | cb | ) | TEST_EXPECTATION(expect_callback(cb, DOES_SEGFAULT, FAILS_ASSERTION, CALL_WILL_SEGFAULT)) |
Definition at line 1252 of file test_unit.h.
#define TEST_EXPECT_CODE_ASSERTION_FAILS__WANTED | ( | cb | ) | TEST_EXPECTATION__WANTED(expect_callback(cb, DOES_SEGFAULT, FAILS_ASSERTION, CALL_WONT_SEGFAULT)) |
Definition at line 1253 of file test_unit.h.
#define TEST_EXPECT_CODE_ASSERTION_FAILS__UNWANTED | ( | cb | ) | TEST_EXPECT_NO_SEGFAULT__WANTED(cb) |
Definition at line 1254 of file test_unit.h.
#define TEST_EXPECT_SEGFAULT | ( | cb | ) | TEST_EXPECTATION(expect_callback(cb, DOES_SEGFAULT, FULFILLS_ASSERTIONS, CALL_WILL_SEGFAULT)) |
Definition at line 1255 of file test_unit.h.
#define TEST_EXPECT_SEGFAULT__WANTED | ( | cb | ) | TEST_EXPECTATION__WANTED(expect_callback(cb, DOES_SEGFAULT, FULFILLS_ASSERTIONS, CALL_WONT_SEGFAULT)) |
Definition at line 1256 of file test_unit.h.
#define TEST_EXPECT_SEGFAULT__UNWANTED | ( | cb | ) | TEST_EXPECT_NO_SEGFAULT__WANTED(cb) |
Definition at line 1257 of file test_unit.h.
#define TEST_EXPECT_EQUAL | ( | expr, | |
want | |||
) | TEST_EXPECTATION(that(expr).is_equal_to(want)) |
Definition at line 1294 of file test_unit.h.
Referenced by test_ptserver_activate(), and PARSIMONY_testenv< SEQTYPE >::~PARSIMONY_testenv().
#define TEST_EXPECT_EQUAL__BROKEN | ( | expr, | |
want, | |||
got | |||
) | do{ using namespace arb_test; expect_broken(that(expr), want, got, __FILE__, __LINE__); }while(0) |
Definition at line 1295 of file test_unit.h.
#define TEST_EXPECT_EQUAL__IGNARG | ( | expr, | |
want, | |||
ign | |||
) | TEST_EXPECTATION(that(expr).is_equal_to(want)) |
Definition at line 1296 of file test_unit.h.
#define TEST_EXPECT_SIMILAR | ( | expr, | |
want, | |||
epsilon | |||
) | TEST_EXPECTATION(that(expr).fulfills(epsilon_similar(epsilon), want)) |
Definition at line 1298 of file test_unit.h.
#define TEST_EXPECT_SIMILAR__BROKEN | ( | expr, | |
want, | |||
epsilon | |||
) | TEST_EXPECTATION__BROKEN_SIMPLE(that(expr).fulfills(epsilon_similar(epsilon), want)) |
Definition at line 1299 of file test_unit.h.
#define TEST_EXPECT_DIFFERENT | ( | expr, | |
want | |||
) | TEST_EXPECTATION(that(expr).does_differ_from(want)); |
Definition at line 1301 of file test_unit.h.
#define TEST_EXPECT_DIFFERENT__BROKEN | ( | expr, | |
want | |||
) | TEST_EXPECTATION__BROKEN_SIMPLE(that(expr).does_differ_from(want)); |
Definition at line 1302 of file test_unit.h.
#define TEST_EXPECT_LESS | ( | val, | |
ref | |||
) | TEST_EXPECTATION(that(val).is_less_than(ref)) |
Definition at line 1304 of file test_unit.h.
#define TEST_EXPECT_LESS__BROKEN | ( | val, | |
ref | |||
) | TEST_EXPECTATION__BROKEN_SIMPLE(that(val).is_less_than(ref)) |
Definition at line 1305 of file test_unit.h.
#define TEST_EXPECT_MORE | ( | val, | |
ref | |||
) | TEST_EXPECTATION(that(val).is_more_than(ref)) |
Definition at line 1306 of file test_unit.h.
#define TEST_EXPECT_MORE__BROKEN | ( | val, | |
ref | |||
) | TEST_EXPECTATION__BROKEN_SIMPLE(that(val).is_more_than(ref)) |
Definition at line 1307 of file test_unit.h.
#define TEST_EXPECT_LESS_EQUAL | ( | val, | |
ref | |||
) | TEST_EXPECTATION(that(val).is_less_or_equal(ref)) |
Definition at line 1308 of file test_unit.h.
Referenced by ptserver(), and ptserver_gene().
#define TEST_EXPECT_LESS_EQUAL__BROKEN | ( | val, | |
ref | |||
) | TEST_EXPECTATION__BROKEN_SIMPLE(that(val).is_less_or_equal(ref)) |
Definition at line 1309 of file test_unit.h.
#define TEST_EXPECT_MORE_EQUAL | ( | val, | |
ref | |||
) | TEST_EXPECTATION(that(val).is_more_or_equal(ref)) |
Definition at line 1310 of file test_unit.h.
#define TEST_EXPECT_MORE_EQUAL__BROKEN | ( | val, | |
ref | |||
) | TEST_EXPECTATION__BROKEN_SIMPLE(that(val).is_more_or_equal(ref)) |
Definition at line 1311 of file test_unit.h.
#define TEST_EXPECT_IN_RANGE | ( | val, | |
lower, | |||
higher | |||
) | TEST_EXPECTATION(all().of(that(val).is_more_or_equal(lower), that(val).is_less_or_equal(higher))) |
Definition at line 1313 of file test_unit.h.
#define TEST_EXPECT_IN_RANGE__BROKEN | ( | val, | |
lower, | |||
higher | |||
) | TEST_EXPECTATION__BROKEN_SIMPLE(all().of(that(val).is_more_or_equal(lower), that(val).is_less_or_equal(higher))) |
Definition at line 1314 of file test_unit.h.
#define TEST_EXPECT_CONTAINS | ( | str, | |
part | |||
) | TEST_EXPECTATION(that(str).does_contain(part)) |
Definition at line 1316 of file test_unit.h.
#define TEST_EXPECT_CONTAINS__BROKEN | ( | str, | |
part | |||
) | TEST_EXPECTATION__BROKEN_SIMPLE(that(str).does_contain(part)) |
Definition at line 1317 of file test_unit.h.
#define TEST_EXPECT_DOESNT_CONTAIN | ( | str, | |
part | |||
) | TEST_EXPECTATION(that(str).doesnt_contain(part)) |
Definition at line 1319 of file test_unit.h.
#define TEST_EXPECT_DOESNT_CONTAIN__BROKEN | ( | str, | |
part | |||
) | TEST_EXPECTATION__BROKEN_SIMPLE(that(str).doesnt_contain(part)) |
Definition at line 1320 of file test_unit.h.
#define TEST_EXPECT_NULL | ( | n | ) | TEST_EXPECT_EQUAL(n, (typeof(n))NULp) |
Definition at line 1322 of file test_unit.h.
#define TEST_EXPECT_NULL__BROKEN | ( | n, | |
got | |||
) | TEST_EXPECT_EQUAL__BROKEN(n, (typeof(n))NULp, got) |
Definition at line 1323 of file test_unit.h.
#define TEST_EXPECT_NULL__BROKEN_SIMPLE | ( | n | ) | TEST_EXPECTATION__BROKEN_SIMPLE(that(n).is_equal_to((typeof(n))NULp)) |
Definition at line 1324 of file test_unit.h.
#define TEST_REJECT_NULL | ( | n | ) | TEST_EXPECT_DIFFERENT(n, (typeof(n))NULp) |
Definition at line 1325 of file test_unit.h.
#define TEST_REJECT_NULL__BROKEN | ( | n | ) | TEST_EXPECT_DIFFERENT__BROKEN(n, (typeof(n))NULp) |
Definition at line 1326 of file test_unit.h.
#define TEST_EXPECT | ( | cond | ) | TEST_EXPECTATION(that(cond).is_equal_to(true)) |
Definition at line 1328 of file test_unit.h.
#define TEST_EXPECT__BROKEN | ( | cond | ) | TEST_EXPECTATION__BROKEN_SIMPLE(that(cond).is_equal_to(true)) |
Definition at line 1329 of file test_unit.h.
#define TEST_REJECT | ( | cond | ) | TEST_EXPECTATION(that(cond).is_equal_to(false)) |
Definition at line 1330 of file test_unit.h.
#define TEST_REJECT__BROKEN | ( | cond | ) | TEST_EXPECTATION__BROKEN_SIMPLE(that(cond).is_equal_to(false)) |
Definition at line 1331 of file test_unit.h.
#define TEST_VALIDITY | ( | valid | ) | TEST_EXPECT_NULL((valid).why_not()) |
Definition at line 1334 of file test_unit.h.
#define TEST_VALIDITY__BROKEN | ( | valid, | |
why | |||
) | TEST_EXPECT_NULL__BROKEN((valid).why_not(),why) |
Definition at line 1335 of file test_unit.h.
#define TEST_EXPECT_STRARRAY_CONTAINS | ( | strings, | |
separator, | |||
expected | |||
) |
Definition at line 1338 of file test_unit.h.
#define TEST_EXPECT_STRARRAY_CONTAINS__BROKEN | ( | strings, | |
separator, | |||
want, | |||
got | |||
) |
Definition at line 1344 of file test_unit.h.
#define WARN_MISS_ARBDIFF | ( | ) | need_include__arb_diff_h__BEFORE__test_unit_h |
Definition at line 1414 of file test_unit.h.
#define TEST_EXPECT_TEXTFILE_DIFFLINES | ( | fgot, | |
fwant, | |||
diff | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1416 of file test_unit.h.
#define TEST_EXPECT_TEXTFILE_DIFFLINES__BROKEN | ( | fgot, | |
fwant, | |||
diff | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1417 of file test_unit.h.
#define TEST_EXPECT_TEXTFILE_DIFFLINES_IGNORE_DATES | ( | fgot, | |
fwant, | |||
diff | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1419 of file test_unit.h.
#define TEST_EXPECT_TEXTFILE_DIFFLINES_IGNORE_DATES__BROKEN | ( | fgot, | |
fwant, | |||
diff | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1420 of file test_unit.h.
#define TEST_EXPECT_FILES_EQUAL | ( | f1, | |
f2 | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1422 of file test_unit.h.
Referenced by ptserver(), and ptserver_gene().
#define TEST_EXPECT_FILES_EQUAL__BROKEN | ( | f1, | |
f2 | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1423 of file test_unit.h.
#define TEST_EXPECT_TEXTFILES_EQUAL | ( | fgot, | |
fwant | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1424 of file test_unit.h.
Referenced by ptserver(), and ptserver_gene().
#define TEST_EXPECT_TEXTFILES_EQUAL__BROKEN | ( | fgot, | |
fwant | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1425 of file test_unit.h.
#define TEST_EXPECT_FILES_DIFFER | ( | f1, | |
f2 | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1427 of file test_unit.h.
#define TEST_EXPECT_FILES_DIFFER__BROKEN | ( | f1, | |
f2 | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1428 of file test_unit.h.
#define TEST_EXPECT_TEXTFILES_DIFFER | ( | fgot, | |
fwant | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1429 of file test_unit.h.
#define TEST_EXPECT_TEXTFILES_DIFFER__BROKEN | ( | fgot, | |
fwant | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1430 of file test_unit.h.
#define TEST_EXPECT_MEM_EQUAL | ( | m1, | |
m2, | |||
size | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1432 of file test_unit.h.
#define TEST_EXPECT_MEM_EQUAL__BROKEN | ( | m1, | |
m2, | |||
size | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1433 of file test_unit.h.
#define memory_is_equal | ( | m1, | |
m2, | |||
size | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1435 of file test_unit.h.
#define files_are_equal | ( | f1, | |
f2 | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1436 of file test_unit.h.
#define textfiles_have_difflines | ( | f1, | |
f2, | |||
ed | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1437 of file test_unit.h.
#define textfiles_have_difflines_ignoreDates | ( | f1, | |
f2, | |||
ed | |||
) | WARN_MISS_ARBDIFF() |
Definition at line 1438 of file test_unit.h.
#define WARN_MISS_ADTREE | ( | ) | need_include__TreeNode_h__BEFORE__test_unit_h |
Definition at line 1479 of file test_unit.h.
#define TEST_EXPECT_NEWICK | ( | format, | |
tree, | |||
expected_newick | |||
) | WARN_MISS_ADTREE() |
Definition at line 1481 of file test_unit.h.
#define TEST_EXPECT_NEWICK__BROKEN | ( | format, | |
tree, | |||
expected_newick | |||
) | WARN_MISS_ADTREE() |
Definition at line 1482 of file test_unit.h.
#define TEST_EXPECT_SAVED_NEWICK | ( | format, | |
gb_main, | |||
treename, | |||
expected_newick | |||
) | WARN_MISS_ADTREE() |
Definition at line 1484 of file test_unit.h.
#define TEST_EXPECT_SAVED_NEWICK__BROKEN | ( | format, | |
gb_main, | |||
treename, | |||
expected_newick | |||
) | WARN_MISS_ADTREE() |
Definition at line 1485 of file test_unit.h.
#define TEST_SETUP_GLOBAL_ENVIRONMENT | ( | modulename | ) |
Definition at line 1491 of file test_unit.h.
#define TEST_PUBLISH | ( | testfunction | ) |
Definition at line 1517 of file test_unit.h.