4939a74752
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
16 lines
218 B
C
16 lines
218 B
C
/**
|
|
* 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
|