test: rename some stuff; separate cron part tests

This commit is contained in:
Jef Roosens 2023-01-28 09:30:35 +01:00
parent adfdca18da
commit 3bf3150b4a
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
8 changed files with 77 additions and 12 deletions

View file

@ -178,10 +178,10 @@ void test_pop_random() {
}
TEST_LIST = {
{"init", test_init},
{"insert", test_insert},
{"insert random", test_insert_random},
{"pop", test_pop},
{"pop random", test_pop_random},
{"heap init", test_init},
{"heap insert", test_insert},
{"heap insert random", test_insert_random},
{"heap pop", test_pop},
{"heap pop random", test_pop_random},
{NULL, NULL}
};

View file

@ -23,6 +23,6 @@ void test_merge_same_order() {
}
TEST_LIST = {
{"merge same order", test_merge_same_order},
{"heap merge same order", test_merge_same_order},
{NULL, NULL}
};