コード例 #1
0
ファイル: XmlAssertTest.cs プロジェクト: zyonet/Mvc
 public void Throws_WithMismatchedXmlDeclaration(string input1, string input2)
 {
     Assert.Throws <EqualException>(() => XmlAssert.Equal(input1, input2));
 }
コード例 #2
0
ファイル: XmlAssertTest.cs プロジェクト: zyonet/Mvc
 public void ReturnsSuccessfully_WithMatchingTextNodes(string input1, string input2)
 {
     XmlAssert.Equal(input1, input2);
 }
コード例 #3
0
ファイル: XmlAssertTest.cs プロジェクト: zyonet/Mvc
 public void ReturnsSuccessfully_WithEmptyElements(string input1, string input2)
 {
     XmlAssert.Equal(input1, input2);
 }
コード例 #4
0
ファイル: XmlAssertTest.cs プロジェクト: zyonet/Mvc
 public void ReturnsSuccessfully_WithMatchingContent_IgnoringAttributeOrder(string input1, string input2)
 {
     XmlAssert.Equal(input1, input2);
 }