System.Xml.Tests.TCFullEndElement.fullEndElement_5 C# (CSharp) Method

fullEndElement_5() public method

public fullEndElement_5 ( ) : int
return int
        public int fullEndElement_5()
        {
            using (XmlWriter w = CreateWriter())
            {
                w.WriteStartElement("Root");
                w.WriteStartAttribute("a");
                w.WriteFullEndElement();
            }
            return CompareReader("<Root a=\"\"></Root>") ? TEST_PASS : TEST_FAIL;
        }