public int attrNamespace_18() { using (XmlWriter w = CreateWriter()) { w.WriteStartElement("Root"); w.WriteAttributeString("x", "a", String.Empty, "b"); w.WriteEndElement(); } return CompareReader("<Root a=\"b\" />") ? TEST_PASS : TEST_FAIL; }