public int attrNamespace_36()
{
using (XmlWriter w = CreateWriter())
{
w.WriteStartElement("pre", "Root", "ns");
w.WriteAttributeString(null, "child", "ns", "test");
w.WriteEndElement();
}
return CompareReader("<pre:Root pre:child='test' xmlns:pre='ns' />") ? TEST_PASS : TEST_FAIL;
}