main.c 244 B

123456789101112131415161718
  1. #include "common.h"
  2. #include "sandbox.h"
  3. /*
  4. _assertNotNull(a);
  5. _assertEqual(sllist_count(a), 0);
  6. */
  7. int main()
  8. {
  9. int success = 1;
  10. /*
  11. success &= !test_create();
  12. success &= !test_add();
  13. */
  14. exit(success ? EXIT_SUCCESS: EXIT_FAILURE);
  15. }