summaryrefslogtreecommitdiff
path: root/src/tests/test.h
blob: d2c4aeb725d6eec51a5f22823b760a240f54e32e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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();

#endif // TESTS_H