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