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
6ac11c60
Commit
6ac11c60
authored
Mar 25, 2014
by
Javier Cantero
Committed by
Alexandre Julliard
Mar 26, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Add SubtractRect() test.
parent
1f15169f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
uitools.c
dlls/user32/tests/uitools.c
+34
-0
No files found.
dlls/user32/tests/uitools.c
View file @
6ac11c60
...
...
@@ -63,7 +63,41 @@ static void test_FillRect(void)
ReleaseDC
(
0
,
hdc
);
}
static
void
test_SubtractRect
(
void
)
{
RECT
rect1
;
RECT
rect2
;
RECT
rectr
;
BOOL
result
;
/* case 1: source rectangles don't intersect */
SetRect
(
&
rect1
,
50
,
50
,
150
,
100
);
SetRect
(
&
rect2
,
250
,
200
,
1500
,
1000
);
result
=
SubtractRect
(
&
rectr
,
&
rect1
,
&
rect2
);
ok
(
result
,
"SubtractRect returned FALSE but subtraction should not be empty
\n
"
);
ok
(
result
&&
rectr
.
left
==
50
&&
rectr
.
top
==
50
&&
rectr
.
right
==
150
&&
rectr
.
bottom
==
100
,
"wrong rect subtraction of SubtractRect "
"(dest rect={%d, %d, %d, %d})
\n
"
,
rectr
.
left
,
rectr
.
top
,
rectr
.
right
,
rectr
.
bottom
);
/* case 2: source rect 2 partially overlaps rect 1 */
SetRect
(
&
rect1
,
2431
,
626
,
3427
,
1608
);
SetRect
(
&
rect2
,
2499
,
626
,
3427
,
1608
);
result
=
SubtractRect
(
&
rectr
,
&
rect1
,
&
rect2
);
ok
(
result
,
"SubtractRect returned FALSE but subtraction should not be empty
\n
"
);
ok
(
result
&&
rectr
.
left
==
2431
&&
rectr
.
top
==
626
&&
rectr
.
right
==
2499
&&
rectr
.
bottom
==
1608
,
"wrong rect subtraction of SubtractRect "
"(dest rect={%d, %d, %d, %d})
\n
"
,
rectr
.
left
,
rectr
.
top
,
rectr
.
right
,
rectr
.
bottom
);
/* case 3: source rect 2 completely overlaps rect 1 */
SetRect
(
&
rect1
,
250
,
250
,
400
,
500
);
SetRect
(
&
rect2
,
50
,
50
,
1500
,
1000
);
result
=
SubtractRect
(
&
rectr
,
&
rect1
,
&
rect2
);
ok
(
!
result
,
"SubtractRect returned TRUE but subtraction should be empty "
"(dest rect={%d, %d, %d, %d})
\n
"
,
rectr
.
left
,
rectr
.
top
,
rectr
.
right
,
rectr
.
bottom
);
}
START_TEST
(
uitools
)
{
test_FillRect
();
test_SubtractRect
();
}
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