Ejemplo n.º 1
0
 public void IndentXmlTest3()
 {
     XmlFormatter formatter = new XmlFormatter();
     string expected = string.Empty;
     string actual = formatter.IndentXml(string.Empty);
     Assert.AreEqual(expected, actual);
 }
Ejemplo n.º 2
0
 public void IndentXmlTest1()
 {
     XmlFormatter formatter = new XmlFormatter();
     string expected = _IndentedXml;
     string actual = formatter.IndentXml(_RawXml);
     Assert.AreEqual(expected, actual);
 }
Ejemplo n.º 3
0
 public void IndentXmlTest2()
 {
     XmlFormatter formatter = new XmlFormatter();
     string actual = formatter.IndentXml(null);
 }