1234567891011121314151617181920212223 |
- #include "test_term.c"
- #include "test_htable.c"
- #include "test_graph.c"
- int main(int argc, char **argv) {
- //int result = (term_tests() | htable_tests() | graph_tests());
- int result = (term_tests() | htable_tests() );
- printf("Test result: %lu\n", (size_t)result);
- if (result != 0) {
- printf("Test failed.");
- }
- else {
- printf("ALL TESTS PASSED\n");
- }
- printf("Tests run: %d\n", tests_run);
- return result != 0;
- }
|