test_list.c 668 B

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