reactos/rostests/dxtest/ddraw/testlist.cpp
Maarten Bosma 1c0a28e0fa Start of ddraw test case.
svn path=/trunk/; revision=26739
2007-05-12 19:43:01 +00:00

24 lines
388 B
C++

#ifndef _DDRAWTESTLIST_H
#define _DDRAWTESTLIST_H
#include "ddrawtest.h"
/* include the tests */
#include "tests/CreateDDraw.cpp"
/* The List of tests */
TEST TestList[] =
{
{ "CreateDDraw", Test_CreateDDraw }
};
/* The function that gives us the number of tests */
extern "C" INT NumTests(void)
{
return sizeof(TestList) / sizeof(TEST);
}
#endif /* _DDRAWTESTLIST_H */
/* EOF */