test/main.c

branch
feature/array
changeset 334
bc81faa9afda
parent 323
b8c49e7a1dba
child 337
f695ae118460
     1.1 --- a/test/main.c	Fri Dec 28 17:20:23 2018 +0100
     1.2 +++ b/test/main.c	Thu Jul 04 20:07:31 2019 +0200
     1.3 @@ -33,6 +33,7 @@
     1.4  
     1.5  #include "main.h"
     1.6  
     1.7 +#include "array_tests.h"
     1.8  #include "allocator_tests.h"
     1.9  #include "logging_tests.h"
    1.10  #include "list_tests.h"
    1.11 @@ -141,6 +142,24 @@
    1.12          ucx_test_register(suite, test_ucx_logger_new);
    1.13          ucx_test_register(suite, test_ucx_logger_log);
    1.14          
    1.15 +        /* UcxArray Tests */
    1.16 +        ucx_test_register(suite, test_ucx_array_free);
    1.17 +        ucx_test_register(suite, test_ucx_array_new);
    1.18 +        ucx_test_register(suite, test_ucx_array_at);
    1.19 +        ucx_test_register(suite, test_ucx_array_append);
    1.20 +        ucx_test_register(suite, test_ucx_array_prepend);
    1.21 +        ucx_test_register(suite, test_ucx_array_autogrow);
    1.22 +        ucx_test_register(suite, test_ucx_array_equals);
    1.23 +        ucx_test_register(suite, test_ucx_array_concat);
    1.24 +        ucx_test_register(suite, test_ucx_array_find);
    1.25 +        ucx_test_register(suite, test_ucx_array_contains);
    1.26 +        ucx_test_register(suite, test_ucx_array_remove);
    1.27 +        ucx_test_register(suite, test_ucx_array_clone);
    1.28 +        ucx_test_register(suite, test_ucx_array_sort);
    1.29 +        ucx_test_register(suite, test_ucx_array_shrink);
    1.30 +        ucx_test_register(suite, test_ucx_array_resize);
    1.31 +        ucx_test_register(suite, test_ucx_array_reserve);
    1.32 +        
    1.33          /* UcxList Tests */
    1.34          ucx_test_register(suite, test_ucx_list_append);
    1.35          ucx_test_register(suite, test_ucx_list_prepend);

mercurial