Update test paths after flattening v0 layout

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-04-24 08:20:54 +02:00
parent 7ff3f76de5
commit 4939a74752
8 changed files with 107 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
/**
* Contains test assertions routines.
*/
#ifndef TEST_H
#define TEST_H
typedef void (*Test)(void);
/**
* Fails a test.
* @param msg The message to print to the console.
*/
void fail(const char* msg);
#endif