move testing code out of test/src/ and into test/

This commit is contained in:
2025-05-22 14:03:36 +02:00
parent 54468cbad3
commit 37109911fb
2 changed files with 0 additions and 0 deletions

20
test/main.c Normal file
View File

@@ -0,0 +1,20 @@
// Copyright (c) 2025 Quinn
// Licensed under the MIT Licence. See LICENSE for details
#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);
}