reactos/rostests/dxtest/ddraw/testlist.cpp
Maarten Bosma 2c56fc8f36 Forgot to commit this one.
svn path=/trunk/; revision=26811
2007-05-16 20:47:02 +00:00

30 lines
665 B
C++

#ifndef _DDRAWTESTLIST_H
#define _DDRAWTESTLIST_H
#include "ddrawtest.h"
#include "debug.cpp"
/* include the tests */
#include "tests/CreateDDraw.cpp"
#include "tests/DisplayModes.cpp"
#include "tests/CreateSurface.cpp"
/* The List of tests */
TEST TestList[] =
{
{ "IDirectDraw: COM Stuff", Test_CreateDDraw },
{ "IDirectDraw: Display Modes", Test_DisplayModes },
{ "IDirectDraw: Cooperative Levels", Test_SetCooperativeLevel },
{ "IDirectDraw: CreateSurface", Test_CreateSurface },
};
/* The function that gives us the number of tests */
extern "C" INT NumTests(void)
{
return sizeof(TestList) / sizeof(TEST);
}
#endif /* _DDRAWTESTLIST_H */
/* EOF */