| 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_free); |
| |
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); |
| |
150 ucx_test_register(suite, test_ucx_array_prepend); |
| |
151 ucx_test_register(suite, test_ucx_array_autogrow); |
| |
152 ucx_test_register(suite, test_ucx_array_equals); |
| |
153 ucx_test_register(suite, test_ucx_array_concat); |
| |
154 ucx_test_register(suite, test_ucx_array_find); |
| |
155 ucx_test_register(suite, test_ucx_array_contains); |
| |
156 ucx_test_register(suite, test_ucx_array_remove); |
| |
157 ucx_test_register(suite, test_ucx_array_clone); |
| |
158 ucx_test_register(suite, test_ucx_array_sort); |
| |
159 ucx_test_register(suite, test_ucx_array_shrink); |
| |
160 ucx_test_register(suite, test_ucx_array_resize); |
| |
161 ucx_test_register(suite, test_ucx_array_reserve); |
| 143 |
162 |
| 144 /* UcxList Tests */ |
163 /* UcxList Tests */ |
| 145 ucx_test_register(suite, test_ucx_list_append); |
164 ucx_test_register(suite, test_ucx_list_append); |
| 146 ucx_test_register(suite, test_ucx_list_prepend); |
165 ucx_test_register(suite, test_ucx_list_prepend); |
| 147 ucx_test_register(suite, test_ucx_list_equals); |
166 ucx_test_register(suite, test_ucx_list_equals); |