scl/test/main.c
Jacob d95c134a54 Test and stuff.
Need to fix testing functions so that every assert is run in each
function of the registry.
2024-09-30 20:55:46 -04:00

13 lines
156 B
C

#include "unity/unity.h"
#include "registry.h"
void (*tests[30])();
void setUp() {}
void tearDown() {}
int main() {
run_all_tests();
return 0;
}