31 |
31 |
32 #include <ucx/test.h> |
32 #include <ucx/test.h> |
33 |
33 |
34 #include "main.h" |
34 #include "main.h" |
35 |
35 |
|
36 #include "array_tests.h" |
36 #include "allocator_tests.h" |
37 #include "allocator_tests.h" |
37 #include "logging_tests.h" |
38 #include "logging_tests.h" |
38 #include "list_tests.h" |
39 #include "list_tests.h" |
39 #include "string_tests.h" |
40 #include "string_tests.h" |
40 #include "mpool_tests.h" |
41 #include "mpool_tests.h" |
138 ucx_test_register(suite, test_sstrprefixsuffix); |
139 ucx_test_register(suite, test_sstrprefixsuffix); |
139 |
140 |
140 /* UcxLogger Tests */ |
141 /* UcxLogger Tests */ |
141 ucx_test_register(suite, test_ucx_logger_new); |
142 ucx_test_register(suite, test_ucx_logger_new); |
142 ucx_test_register(suite, test_ucx_logger_log); |
143 ucx_test_register(suite, test_ucx_logger_log); |
|
144 |
|
145 /* UcxArray Tests */ |
|
146 ucx_test_register(suite, test_ucx_array_destroy); |
|
147 ucx_test_register(suite, test_ucx_array_new); |
|
148 ucx_test_register(suite, test_ucx_array_at); |
|
149 ucx_test_register(suite, test_ucx_array_append_from); |
|
150 ucx_test_register(suite, test_ucx_array_prepend_from); |
|
151 ucx_test_register(suite, test_ucx_array_set_from); |
|
152 ucx_test_register(suite, test_ucx_array_append); |
|
153 ucx_test_register(suite, test_ucx_array_prepend); |
|
154 ucx_test_register(suite, test_ucx_array_set); |
|
155 ucx_test_register(suite, test_ucx_array_autogrow); |
|
156 ucx_test_register(suite, test_ucx_array_equals); |
|
157 ucx_test_register(suite, test_ucx_array_concat); |
|
158 ucx_test_register(suite, test_ucx_array_find); |
|
159 ucx_test_register(suite, test_ucx_array_contains); |
|
160 ucx_test_register(suite, test_ucx_array_remove); |
|
161 ucx_test_register(suite, test_ucx_array_clone); |
|
162 ucx_test_register(suite, test_ucx_array_sort); |
|
163 ucx_test_register(suite, test_ucx_array_shrink); |
|
164 ucx_test_register(suite, test_ucx_array_resize); |
|
165 ucx_test_register(suite, test_ucx_array_reserve); |
|
166 ucx_test_register(suite, test_ucx_array_util_set); |
143 |
167 |
144 /* UcxList Tests */ |
168 /* UcxList Tests */ |
145 ucx_test_register(suite, test_ucx_list_append); |
169 ucx_test_register(suite, test_ucx_list_append); |
146 ucx_test_register(suite, test_ucx_list_prepend); |
170 ucx_test_register(suite, test_ucx_list_prepend); |
147 ucx_test_register(suite, test_ucx_list_equals); |
171 ucx_test_register(suite, test_ucx_list_equals); |