Added TestCaseReference structure.

This commit is contained in:
Markus Kauppila 2011-05-26 19:19:46 +03:00
parent d6d8dec05e
commit ff1e17dca4
4 changed files with 38 additions and 11 deletions

View file

@ -23,6 +23,13 @@
#include <SDL/SDL.h>
typedef struct TestCaseReference {
int enabled; /* Set to TEST_ENABLED or TEST_DISABLED */
long requirements; /* Set to TEST_REQUIRES_OPENGL, TEST_REQUIRES_AUDIO, ... */
char *name; /* "Func2Stress" */
char *description; /* "This test beats the crap out of func2()" */
} TestCaseReference;
void TestInit();
void TestQuit();