public void IndentXmlTest3()
        {
            XmlFormatter formatter = new XmlFormatter();
            string       expected  = string.Empty;
            string       actual    = formatter.IndentXml(string.Empty);

            Assert.AreEqual(expected, actual);
        }
        public void IndentXmlTest1()
        {
            XmlFormatter formatter = new XmlFormatter();
            string       expected  = _IndentedXml;
            string       actual    = formatter.IndentXml(_RawXml);

            Assert.AreEqual(expected, actual);
        }
 public void IndentXmlTest2()
 {
     XmlFormatter formatter = new XmlFormatter();
     string       actual    = formatter.IndentXml(null);
 }