reactos/rostests/apitests/dciman32api/testlist.c
Magnus Olsen cfd749136a add dummy test for dciman32 for now, real test will come later
svn path=/trunk/; revision=33896
2008-06-08 08:29:04 +00:00

33 lines
398 B
C

#ifndef _DCIMAN32TESTLIST_H
#define _DCIMAN32TESTLIST_H
#include "dciman32api.h"
/* include the tests */
#include "tests/DCICreatePrimary.c"
/* The List of tests */
TESTENTRY TestList[] =
{
{ L"DCICreatePrimary", Test_DCICreatePrimary }
};
/* The function that gives us the number of tests */
INT NumTests(void)
{
return sizeof(TestList) / sizeof(TESTENTRY);
}
#endif
/* EOF */