public int document_6()
{
using (XmlWriter w = CreateWriter())
{
try
{
w.WriteStartDocument();
w.WriteStartElement("Root");
w.WriteEndElement();
w.WriteEndDocument();
w.WriteStartDocument();
w.WriteEndDocument();
}
catch (InvalidOperationException e)
{
CError.WriteLineIgnore("Exception: " + e.ToString());
CError.Compare(w.WriteState, WriteState.Error, "WriteState should be Error");
return TEST_PASS;
}
}
CError.WriteLine("Did not throw exception");
return TEST_FAIL;
}