wizapp-stdlib/tests/wapptest.c
2024-06-03 08:05:14 +01:00

14 lines
432 B
C

#include "test_arena.h"
#include "tester.h"
#include <stdlib.h>
int main(void) {
wapp_tester_run_tests(test_arena_init,
test_arena_init_succeeds_when_reserving_very_large_size,
test_arena_alloc_succeeds_when_within_capacity,
test_arena_alloc_fails_when_over_capacity,
test_arena_clear, test_arena_destroy);
return EXIT_SUCCESS;
}