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