mirror of
https://github.com/reactos/wine.git
synced 2025-03-03 02:05:48 +00:00
msxml3/tests: Added test for getContentHandler with NULL argument.
This commit is contained in:
parent
b3da220229
commit
f216514dd5
@ -212,6 +212,9 @@ static void test_saxreader(void)
|
||||
return;
|
||||
}
|
||||
|
||||
hr = ISAXXMLReader_getContentHandler(reader, NULL);
|
||||
ok(hr == E_POINTER, "Expected E_POINTER, got %08x\n", hr);
|
||||
|
||||
hr = ISAXXMLReader_getContentHandler(reader, &lpContentHandler);
|
||||
ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
|
||||
ok(lpContentHandler == NULL, "Expected %p, got %p\n", NULL, lpContentHandler);
|
||||
|
Loading…
x
Reference in New Issue
Block a user