mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
cfd749136a
svn path=/trunk/; revision=33896
32 lines
398 B
C
32 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 */
|