Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a11c7514
Commit
a11c7514
authored
Mar 31, 2007
by
Laurent Vromman
Committed by
Alexandre Julliard
Apr 02, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Add two basic tests to check what WidenPath does.
parent
ddaacfbe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
85 additions
and
0 deletions
+85
-0
Makefile.in
dlls/gdi32/tests/Makefile.in
+1
-0
path.c
dlls/gdi32/tests/path.c
+84
-0
No files found.
dlls/gdi32/tests/Makefile.in
View file @
a11c7514
...
...
@@ -16,6 +16,7 @@ CTESTS = \
mapping.c
\
metafile.c
\
palette.c
\
path.c
\
pen.c
@MAKE_TEST_RULES@
...
...
dlls/gdi32/tests/path.c
0 → 100644
View file @
a11c7514
/*
* Unit test suite for paths
*
* Copyright 2007 Laurent Vromman
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "wine/test.h"
#include "winuser.h"
#include "winerror.h"
static
void
test_widenpath
(
void
)
{
HDC
hdc
=
GetDC
(
0
);
HPEN
greenPen
;
HPEN
oldPen
;
POINT
pnt
[
6
];
INT
nSize
;
/* Create a pen to be used in WidenPath */
greenPen
=
CreatePen
(
PS_SOLID
,
10
,
RGB
(
0
,
0
,
0
));
oldPen
=
SelectObject
(
hdc
,
greenPen
);
/* Prepare a path */
pnt
[
0
].
x
=
100
;
pnt
[
0
].
y
=
0
;
pnt
[
1
].
x
=
200
;
pnt
[
1
].
y
=
0
;
pnt
[
2
].
x
=
300
;
pnt
[
2
].
y
=
100
;
pnt
[
3
].
x
=
300
;
pnt
[
3
].
y
=
200
;
pnt
[
4
].
x
=
200
;
pnt
[
4
].
y
=
300
;
pnt
[
5
].
x
=
100
;
pnt
[
5
].
y
=
300
;
/* Set a polyline path */
BeginPath
(
hdc
);
Polyline
(
hdc
,
pnt
,
6
);
EndPath
(
hdc
);
/* Widen the polyline path */
ok
(
WidenPath
(
hdc
),
"WidenPath fails while widening a poyline path.
\n
"
);
/* Test if WidenPath seems to have done his job */
nSize
=
GetPath
(
hdc
,
NULL
,
NULL
,
0
);
ok
(
nSize
!=
-
1
,
"GetPath fails after calling WidenPath.
\n
"
);
ok
(
nSize
>
6
,
"Path number of points is to low. Should be more than 6 but is %d
\n
"
,
nSize
);
todo_wine
{
/* Test WidenPath with an empty path */
SetLastError
(
0xdeadbeef
);
BeginPath
(
hdc
);
ok
(
WidenPath
(
hdc
)
==
FALSE
,
"WidenPath fails while widening an empty path. Error : %d
\n
"
,
GetLastError
());
}
ReleaseDC
(
0
,
hdc
);
return
;
}
START_TEST
(
path
)
{
test_widenpath
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment