Sync to trunk head (r42241)
[reactos.git] / rostests / apitests / user32api / testlist.c
1 #ifndef _USER32TESTLIST_H
2 #define _USER32TESTLIST_H
3
4 #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
5
6 #include "user32api.h"
7
8 /* include the tests */
9 #include "tests/InitializeLpkHooks.c"
10 #include "tests/ScrollDC.c"
11 #include "tests/ScrollWindowEx.c"
12 #include "tests/RealGetWindowClass.c"
13
14 /* The List of tests */
15 TESTENTRY TestList[] =
16 {
17 { L"InitializeLpkHooks", Test_InitializeLpkHooks },
18 { L"ScrollDC", Test_ScrollDC },
19 { L"ScrollWindowEx", Test_ScrollWindowEx },
20 { L"RealGetWindowClass", Test_RealGetWindowClass },
21 };
22
23 /* The function that gives us the number of tests */
24 INT NumTests(void)
25 {
26 return ARRAY_SIZE(TestList);
27 }
28
29 #endif /* _USER32TESTLIST_H */
30
31 /* EOF */