mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 19:41:57 +00:00
33 lines
398 B
C
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 */
|