Add basic tests for GetDIBits
[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/AddFontResourceEx.c"
8 #include "tests/CreateCompatibleDC.c"
9 #include "tests/CreateFont.c"
10 #include "tests/CreatePen.c"
11 #include "tests/CreateRectRgn.c"
12 #include "tests/ExtCreatePen.c"
13 #include "tests/GetClipRgn.c"
14 #include "tests/GetObject.c"
15 #include "tests/GetStockObject.c"
16 #include "tests/GetDIBits.c"
17 #include "tests/SelectObject.c"
18 #include "tests/SetDCPenColor.c"
19 #include "tests/SetSysColors.c"
20 //#include "tests/SetWorldTransform.c"
21
22 /* The List of tests */
23 TESTENTRY TestList[] =
24 {
25 { L"AddFontResourceEx", Test_AddFontResourceEx },
26 { L"CreateCompatibleDC", Test_CreateCompatibleDC },
27 { L"CreateFont", Test_CreateFont },
28 { L"CreatePen", Test_CreatePen },
29 { L"CreateRectRgn", Test_CreateRectRgn },
30 { L"ExtCreatePen", Test_ExtCreatePen },
31 { L"GetClipRgn", Test_GetClipRgn },
32 { L"GetObject", Test_GetObject },
33 { L"GetStockObject", Test_GetStockObject },
34 { L"GetDIBits", Test_GetDIBits },
35 { L"SetSysColors", Test_SetSysColors },
36 { L"SelectObject", Test_SelectObject },
37 { L"SetDCPenColor", Test_SetDCPenColor },
38 // { L"SetWorldTransform", Test_SetWorldTransform },
39 };
40
41 /* The function that gives us the number of tests */
42 INT NumTests(void)
43 {
44 return sizeof(TestList) / sizeof(TESTENTRY);
45 }
46
47 #endif /* _GDITESTLIST_H */
48
49 /* EOF */