add test case

This commit is contained in:
Lysann Tranvouez 2025-10-01 23:46:55 +02:00
parent 7c9b945386
commit 4947fb5553
4 changed files with 67 additions and 1 deletions

9
tests/test_func.c Normal file
View file

@ -0,0 +1,9 @@
#include "test_func.h"
int testFunctionCounter = 0;
int testFunction()
{
testFunctionCounter++;
return 42;
}