| 123456789101112131415161718 |
- #include "common.h"
- #include "sandbox.h"
- /*
- _assertNotNull(a);
- _assertEqual(sllist_count(a), 0);
- */
- int main()
- {
- int success = 1;
- /*
- success &= !test_create();
- success &= !test_add();
- */
- exit(success ? EXIT_SUCCESS: EXIT_FAILURE);
- }
|