Add testing for i32 array to test array logic

This commit is contained in:
2025-04-21 17:47:33 +01:00
parent a359331df7
commit d3f1686d58
4 changed files with 157 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
#include "test_str8_list.h"
#include "test_allocator.h"
#include "test_arena.h"
#include "test_i32_array.h"
#include "test_cpath.h"
#include "test_shell_commander.h"
#include "wapp.h"
@@ -17,6 +18,14 @@ int main(void) {
test_arena_realloc_smaller_size,
test_arena_clear,
test_arena_destroy,
test_i32_array,
test_i32_array_with_capacity,
test_i32_array_get,
test_i32_array_set,
test_i32_array_append_capped,
test_i32_array_extend_capped,
test_i32_array_clear,
test_i32_array_pop,
test_str8_lit,
test_str8_lit_ro,
test_str8_buf,