|
Apache HTTPD
|
Go to the source code of this file.
Classes | |
| struct | SRunner |
| struct | Suite |
| struct | TCase |
Macros | |
| #define | XML_MINICHECK_H |
| #define | CK_NOFORK 0 |
| #define | CK_FORK 1 |
| #define | CK_SILENT 0 |
| #define | CK_NORMAL 1 |
| #define | CK_VERBOSE 2 |
| #define | PRINTF_LIKE(fmtpos, argspos) |
| #define | START_TEST(testname) |
| #define | END_TEST |
| #define | fail(msg) _fail(__FILE__, __LINE__, msg) |
| #define | assert_true(cond) |
Typedefs | |
| typedef void(* | tcase_setup_function) (void) |
| typedef void(* | tcase_teardown_function) (void) |
| typedef void(* | tcase_test_function) (void) |
| typedef struct SRunner | SRunner |
| typedef struct Suite | Suite |
| typedef struct TCase | TCase |
Functions | |
| void | set_subtest (char const *fmt,...) |
| void | _check_set_test_info (char const *function, char const *filename, int lineno) |
| void | _fail (const char *file, int line, const char *msg) |
| Suite * | suite_create (const char *name) |
| TCase * | tcase_create (const char *name) |
| void | suite_add_tcase (Suite *suite, TCase *tc) |
| void | tcase_add_checked_fixture (TCase *tc, tcase_setup_function setup, tcase_teardown_function teardown) |
| void | tcase_add_test (TCase *tc, tcase_test_function test) |
| SRunner * | srunner_create (Suite *suite) |
| void | srunner_run_all (SRunner *runner, const char *context, int verbosity) |
| void | srunner_summarize (SRunner *runner, int verbosity) |
| int | srunner_ntests_failed (SRunner *runner) |
| void | srunner_free (SRunner *runner) |
| #define assert_true | ( | cond | ) |
Definition at line 88 of file minicheck.h.
| #define CK_FORK 1 |
Definition at line 50 of file minicheck.h.
| #define CK_NOFORK 0 |
Definition at line 49 of file minicheck.h.
| #define CK_NORMAL 1 |
Definition at line 53 of file minicheck.h.
| #define CK_SILENT 0 |
Definition at line 52 of file minicheck.h.
| #define CK_VERBOSE 2 |
Definition at line 54 of file minicheck.h.
| #define END_TEST |
Definition at line 81 of file minicheck.h.
Definition at line 74 of file minicheck.h.
Definition at line 77 of file minicheck.h.
| #define XML_MINICHECK_H |
Definition at line 47 of file minicheck.h.
| typedef void(* tcase_setup_function) (void) |
Definition at line 95 of file minicheck.h.
| typedef void(* tcase_teardown_function) (void) |
Definition at line 96 of file minicheck.h.
| typedef void(* tcase_test_function) (void) |
Definition at line 97 of file minicheck.h.
Definition at line 149 of file minicheck.c.
Definition at line 247 of file minicheck.c.
Definition at line 157 of file minicheck.c.
Definition at line 132 of file minicheck.c.
| void srunner_free | ( | SRunner * | runner | ) |
Definition at line 268 of file minicheck.c.
Definition at line 262 of file minicheck.c.
Definition at line 192 of file minicheck.c.
Definition at line 236 of file minicheck.c.
Definition at line 74 of file minicheck.c.
Definition at line 56 of file minicheck.c.
| void tcase_add_checked_fixture | ( | TCase * | tc, |
| tcase_setup_function | setup, | ||
| tcase_teardown_function | teardown | ||
| ) |
Definition at line 84 of file minicheck.c.
| void tcase_add_test | ( | TCase * | tc, |
| tcase_test_function | test | ||
| ) |
Definition at line 92 of file minicheck.c.
Definition at line 65 of file minicheck.c.