#ifndef TESTS_H
#define TESTS_H
typedef struct {
char *Name;
// The test function. If it returns an error message
// the test is concidered as failed
char *(*Function)();
} UnitTest;
// ========== TESTS ==========
char *ArenaAllocation();
char *ArenaOutOfMemory();
char *difficultyCalculator();
#endif // TESTS_H