Added push_back_multiple, free, and remove to DArray. Added tests.

This commit is contained in:
2026-08-13 19:01:13 +03:00
parent 331529a05d
commit 6ce34dfe91
4 changed files with 197 additions and 25 deletions
+8
View File
@@ -1,11 +1,19 @@
#include <cmocka.h>
int DString_tests_run(void);
int DArray_tests_run(void);
int main(void) {
int failed = 0;
failed = DString_tests_run();
if (failed) {
return failed;
}
failed = DArray_tests_run();
if (failed) {
return failed;
}
return failed;
}