]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/test.qh
Merge branch 'master' into TimePath/unified_weapons
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / test.qh
1 #ifndef TEST_H
2 #define TEST_H
3
4 #include "../common/util.qh"
5
6 #define TEST_Check(cond) do { if(!(cond)) TEST_Fail(#cond); } while(0)
7
8 void TEST_OK();
9 void TEST_Fail(string cond);
10
11 float TEST_RunAll();
12 float TEST_Run(string test);
13 #endif