test_list.h 498 B

123456789101112131415161718192021
  1. #include <stdio.h>
  2. #include "list.h"
  3. int main() {
  4. List lst = new_List();
  5. assert(List_size(lst) == 0);
  6. assert(List_front(lst) == NULL);
  7. assert(List_back(lst) == NULL);
  8. List_pushBack(lst, new_Integer(1));
  9. List_pushBack(lst, new_Integer(2));
  10. List_pushBack(lst, new_Integer(3));
  11. List_pushBack(lst, new_Integer(4));
  12. assert(List_size(lst) == 4);
  13. assert(*(Integer)List_front(lst) == 1);
  14. assert(*(Integer)List_back(lst) == 4);
  15. printf("[PASSED] List")
  16. }