Add tests for str8 splitting, joining and concatenation

This commit is contained in:
2025-02-15 23:45:37 +00:00
parent d50b41acac
commit a4a1e82c40
3 changed files with 211 additions and 0 deletions

View File

@@ -24,8 +24,15 @@ int main(void) {
test_str8_set,
test_str8_equal,
test_str8_substr,
test_str8_concat,
test_str8_concat_capped,
test_str8_find,
test_str8_rfind,
test_str8_split,
test_str8_split_with_max,
test_str8_rsplit,
test_str8_rsplit_with_max,
test_str8_join,
test_str8_list_get,
test_str8_list_push_front,
test_str8_list_push_back,