]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/test.qh
#includes: cleanup
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / test.qh
1 #ifndef TEST_H
2 #define TEST_H
3
4 #define TEST_Check(cond) do { if(!(cond)) TEST_Fail(#cond); } while(0)
5
6 void TEST_OK();
7 void TEST_Fail(string cond);
8
9 float TEST_RunAll();
10 float TEST_Run(string test);
11 #endif