Added more tests.

This commit is contained in:
2023-09-04 16:41:07 +02:00
parent 3543700b01
commit 8c2906765f
9 changed files with 170 additions and 14 deletions

36
tests/tensoriter_test.c Normal file
View File

@@ -0,0 +1,36 @@
#include "tensoriter_test.h"
void tensoriter_test_scalar_next(void)
{
//TODO
}
void tensoriter_test_scalar_get(void)
{
//TODO
}
void tensoriter_test_scalar_map(void)
{
//TODO
}
void tensoriter_test_scalar_map_add(void)
{
//TODO
}
void tensoriter_test_scalar_map_sub(void)
{
//TODO
}
void tensoriter_test_scalar_map_mul(void)
{
//TODO
}
void tensoriter_test_scalar_map_div(void)
{
//TODO
}