Changes in tests/check_help.c [2d88d25a:c227706]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/check_help.c
r2d88d25a rc227706 7 7 #include "help.h" 8 8 9 START_TEST(test_help_ initfree)9 START_TEST(test_help_none) 10 10 help_t *h, *r; 11 11 r = help_init(&h, "/dev/null"); 12 12 fail_if(r == NULL); 13 13 fail_if(r != h); 14 15 help_free(&h);16 fail_if(h != NULL);17 14 END_TEST 18 15 … … 28 25 TCase *tc_core = tcase_create("Core"); 29 26 suite_add_tcase (s, tc_core); 30 tcase_add_test (tc_core, test_help_ initfree);27 tcase_add_test (tc_core, test_help_none); 31 28 tcase_add_test (tc_core, test_help_nonexistent); 32 29 return s;
Note: See TracChangeset
for help on using the changeset viewer.