[RICHED20_WINETEST]
[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/GetSystemMetrics.c"
10 #include "tests/InitializeLpkHooks.c"
11 #include "tests/ScrollDC.c"
12 #include "tests/ScrollWindowEx.c"
13 #include "tests/RealGetWindowClass.c"
14
15 /* The List of tests */
16 TESTENTRY TestList[] =
17 {
18 { L"GetSystemMetrics", Test_GetSystemMetrics },
19 { L"InitializeLpkHooks", Test_InitializeLpkHooks },
20 { L"ScrollDC", Test_ScrollDC },
21 { L"ScrollWindowEx", Test_ScrollWindowEx },
22 { L"RealGetWindowClass", Test_RealGetWindowClass },
23 };
24
25 /* The function that gives us the number of tests */
26 INT NumTests(void)
27 {
28 return ARRAY_SIZE(TestList);
29 }
30
31 #endif /* _USER32TESTLIST_H */
32
33 /* EOF */