Changeset b79308b for tests/check_help.c
- Timestamp:
- 2008-04-14T13:10:53Z (17 years ago)
- Branches:
- master
- Children:
- 0cab388
- Parents:
- 6cac643 (diff), aa31117 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/check_help.c
r6cac643 rb79308b 7 7 #include "help.h" 8 8 9 START_TEST(test_help_ none)9 START_TEST(test_help_initfree) 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); 14 17 END_TEST 15 18 … … 25 28 TCase *tc_core = tcase_create("Core"); 26 29 suite_add_tcase (s, tc_core); 27 tcase_add_test (tc_core, test_help_ none);30 tcase_add_test (tc_core, test_help_initfree); 28 31 tcase_add_test (tc_core, test_help_nonexistent); 29 32 return s;
Note: See TracChangeset
for help on using the changeset viewer.