Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7cca2142
Commit
7cca2142
authored
Aug 20, 2008
by
Roy Shea
Committed by
Alexandre Julliard
Aug 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mstask/tests: Conformance test for (Set|Get)Comment.
parent
cd8ac273
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
71 additions
and
0 deletions
+71
-0
task.c
dlls/mstask/tests/task.c
+71
-0
No files found.
dlls/mstask/tests/task.c
View file @
7cca2142
...
...
@@ -300,11 +300,82 @@ static void test_SetParameters_GetParameters(void)
return
;
}
static
void
test_SetComment_GetComment
(
void
)
{
BOOL
setup
;
HRESULT
hres
;
LPWSTR
comment
;
const
WCHAR
comment_a
[]
=
{
'C'
,
'o'
,
'm'
,
'm'
,
'e'
,
'n'
,
't'
,
'.'
,
0
};
const
WCHAR
comment_b
[]
=
{
'L'
,
'o'
,
'n'
,
'g'
,
'e'
,
'r'
,
' '
,
'c'
,
'o'
,
'm'
,
'm'
,
'e'
,
'n'
,
't'
,
'.'
,
0
};
setup
=
setup_task
();
ok
(
setup
,
"Failed to setup test_task
\n
"
);
if
(
!
setup
)
{
skip
(
"Failed to create task. Skipping tests.
\n
"
);
return
;
}
/* Get comment before setting it*/
hres
=
ITask_GetComment
(
test_task
,
&
comment
);
todo_wine
ok
(
hres
==
S_OK
,
"GetComment failed: %08x
\n
"
,
hres
);
if
(
hres
==
S_OK
)
{
todo_wine
ok
(
!
lstrcmpW
(
comment
,
empty
),
"Got %s, expected empty string
\n
"
,
dbgstr_w
(
comment
));
CoTaskMemFree
(
comment
);
}
/* Set comment to a simple string */
hres
=
ITask_SetComment
(
test_task
,
comment_a
);
todo_wine
ok
(
hres
==
S_OK
,
"Failed setting comment %s: %08x
\n
"
,
dbgstr_w
(
comment_a
),
hres
);
hres
=
ITask_GetComment
(
test_task
,
&
comment
);
todo_wine
ok
(
hres
==
S_OK
,
"GetComment failed: %08x
\n
"
,
hres
);
if
(
hres
==
S_OK
)
{
todo_wine
ok
(
!
lstrcmpW
(
comment
,
comment_a
),
"Got %s, expected %s
\n
"
,
dbgstr_w
(
comment
),
dbgstr_w
(
comment_a
));
CoTaskMemFree
(
comment
);
}
/* Update comment to a different simple string */
hres
=
ITask_SetComment
(
test_task
,
comment_b
);
todo_wine
ok
(
hres
==
S_OK
,
"Failed setting comment %s: %08x
\n
"
,
dbgstr_w
(
comment_b
),
hres
);
hres
=
ITask_GetComment
(
test_task
,
&
comment
);
todo_wine
ok
(
hres
==
S_OK
,
"GetComment failed: %08x
\n
"
,
hres
);
if
(
hres
==
S_OK
)
{
todo_wine
ok
(
!
lstrcmpW
(
comment
,
comment_b
),
"Got %s, expected %s
\n
"
,
dbgstr_w
(
comment
),
dbgstr_w
(
comment_b
));
CoTaskMemFree
(
comment
);
}
/* Clear comment */
hres
=
ITask_SetComment
(
test_task
,
empty
);
todo_wine
ok
(
hres
==
S_OK
,
"Failed setting comment %s: %08x
\n
"
,
dbgstr_w
(
empty
),
hres
);
hres
=
ITask_GetComment
(
test_task
,
&
comment
);
todo_wine
ok
(
hres
==
S_OK
,
"GetComment failed: %08x
\n
"
,
hres
);
if
(
hres
==
S_OK
)
{
todo_wine
ok
(
!
lstrcmpW
(
comment
,
empty
),
"Got %s, expected empty string
\n
"
,
dbgstr_w
(
comment
));
CoTaskMemFree
(
comment
);
}
cleanup_task
();
return
;
}
START_TEST
(
task
)
{
CoInitialize
(
NULL
);
test_SetApplicationName_GetApplicationName
();
test_CreateTrigger
();
test_SetParameters_GetParameters
();
test_SetComment_GetComment
();
CoUninitialize
();
}
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