Added unit tests.

This commit is contained in:
2023-03-15 15:49:35 +01:00
parent 91d25e5d54
commit 3fb0eb2ae3
3 changed files with 145 additions and 0 deletions

9
main.c Normal file
View File

@@ -0,0 +1,9 @@
#include "tensor.h"
#include "test_tensor.h"
int main(void)
{
test_run_all();
return 0;
}