Commit fdbbf6de authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

xmllite/tests: Add some more tests for WriteStartElement().

parent e77d3f59
......@@ -861,6 +861,8 @@ static void test_WriteStartElement(void)
{ NULL, L"local", L"uri", "<local xmlns=\"uri\" />", "<local" },
{ L"", L"local", L"uri", "<local xmlns=\"uri\" />", "<local" },
{ L"", L"local", L"uri", "<local xmlns=\"uri\" />", "<local" },
{ NULL, L"local", NULL, "<local />", "<local" },
{ NULL, L"local", L"", "<local />", "<local" },
{ L"prefix", NULL, NULL, NULL, NULL, E_INVALIDARG },
{ NULL, NULL, L"uri", NULL, NULL, E_INVALIDARG },
......
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