aboutsummaryrefslogtreecommitdiff
path: root/test_vector.c
Commit message (Collapse)AuthorAgeFilesLines
* fix: Memory Leak in eb_delete_linedilluti0n2025-05-101-7/+2
| | | | | | The function eb_delete_line did not properly free the contents of the entry when deleting an element from eb->line_vec. This patch fixes that issue.
* refactor: no single line hidden expression on test_vector.cdilluti0n2025-04-281-10/+25
|
* implement: uniittest vector_suite::delete_single and *::delete_rangedilluti0n2025-04-281-0/+68
|
* implement: uniittest vector_suite::splitdilluti0n2025-04-281-0/+64
|
* implement: uniittest vector_suite::catdilluti0n2025-04-281-1/+67
|
* implement: unit test vector_suite::insert_vectordilluti0n2025-04-281-0/+70
|
* implement: unit test vector_suite::popdilluti0n2025-04-281-0/+33
|
* refactor: move tests to seperate filesdilluti0n2025-04-281-0/+111
test.c to *_line.c and *_vector.c also implement unit test vector_suite::resize too.