Commit 9845a9ce authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

msxml: Added test for get_text.

parent 54d5fd07
......@@ -1206,6 +1206,10 @@ static void test_get_text(void)
ok( r == S_OK, "ret %08x\n", r );
IXMLDOMNodeList_Release( node_list );
/* Invalid output parameter*/
r = IXMLDOMNode_get_text( node, NULL );
ok( r == E_INVALIDARG, "ret %08x\n", r );
r = IXMLDOMNode_get_text( node, &str );
ok( r == S_OK, "ret %08x\n", r );
todo_wine {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment