Esempio n. 1
0
 public void Throws_WithMismatchedXmlDeclaration(string input1, string input2)
 {
     Assert.Throws <EqualException>(() => XmlAssert.Equal(input1, input2));
 }
Esempio n. 2
0
 public void ReturnsSuccessfully_WithMatchingTextNodes(string input1, string input2)
 {
     XmlAssert.Equal(input1, input2);
 }
Esempio n. 3
0
 public void ReturnsSuccessfully_WithEmptyElements(string input1, string input2)
 {
     XmlAssert.Equal(input1, input2);
 }
Esempio n. 4
0
 public void ReturnsSuccessfully_WithMatchingContent_IgnoringAttributeOrder(string input1, string input2)
 {
     XmlAssert.Equal(input1, input2);
 }