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