- rename ASSERT1 to ASSERT
[reactos.git] / rostests / apitests / gdi32api / testlist.c
1 #ifndef _GDITESTLIST_H
2 #define _GDITESTLIST_H
3
4 #include "gdi32api.h"
5
6 /* include the tests */
7 #include "tests/CreateCompatibleDC.c"
8 #include "tests/CreateFont.c"
9 #include "tests/CreatePen.c"
10 #include "tests/CreateRectRgn.c"
11 #include "tests/ExtCreatePen.c"
12 #include "tests/GetClipRgn.c"
13 #include "tests/GetObject.c"
14 #include "tests/GetStockObject.c"
15 #include "tests/SelectObject.c"
16 #include "tests/SetDCPenColor.c"
17 #include "tests/SetSysColors.c"
18 //#include "tests/SetWorldTransform.c"
19
20 /* The List of tests */
21 TESTENTRY TestList[] =
22 {
23 { L"CreateCompatibleDC", Test_CreateCompatibleDC },
24 { L"CreateFont", Test_CreateFont },
25 { L"CreatePen", Test_CreatePen },
26 { L"CreateRectRgn", Test_CreateRectRgn },
27 { L"ExtCreatePen", Test_ExtCreatePen },
28 { L"GetClipRgn", Test_GetClipRgn },
29 { L"GetObject", Test_GetObject },
30 { L"GetStockObject", Test_GetStockObject },
31 { L"SetSysColors", Test_SetSysColors },
32 { L"SelectObject", Test_SelectObject },
33 { L"SetDCPenColor", Test_SetDCPenColor },
34 // { L"SetWorldTransform", Test_SetWorldTransform },
35 };
36
37 /* The function that gives us the number of tests */
38 INT NumTests(void)
39 {
40 return sizeof(TestList) / sizeof(TESTENTRY);
41 }
42
43 #endif /* _GDITESTLIST_H */
44
45 /* EOF */