Files
mcaselector-lite/test/src/main.c
2025-06-02 12:41:00 +02:00

19 lines
275 B
C

#include <stdio.h>
#include <stdlib.h>
#include "test.h"
int main(void) {
/*
// tests that should be performed
testdat tests[] = {
};
// get test count
size_t n = sizeof(tests) / sizeof(tests[0]);
*/
return exec_tests(NULL, 0);
// return exec_tests(tests, n);
}