tests: TEST_INIT -> TEST_START, TEST_PASSED -> TEST_END

This commit is contained in:
2026-02-05 20:34:29 +00:00
parent 0e6a43ec5f
commit 0b3d659f14
6 changed files with 31 additions and 31 deletions

View File

@@ -10,7 +10,7 @@
void vec_test_concat(void)
{
TEST_INIT();
TEST_START();
sys_t system = {0};
sys_init(&system);
@@ -34,12 +34,12 @@ void vec_test_concat(void)
strlen(words_text));
sys_free(&system);
TEST_PASSED();
TEST_END();
}
void vec_test_substr(void)
{
TEST_INIT();
TEST_START();
sys_t system = {0};
sys_init(&system);
// Generating substrings
@@ -68,7 +68,7 @@ void vec_test_substr(void)
}
sys_free(&system);
TEST_PASSED();
TEST_END();
}
MAKE_TEST_SUITE(VEC_SUITE, "Vector Tests",