本文整理汇总了C#中System.Xml.Linq.XAttribute.Should方法的典型用法代码示例。如果您正苦于以下问题:C# XAttribute.Should方法的具体用法?C# XAttribute.Should怎么用?C# XAttribute.Should使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Xml.Linq.XAttribute
的用法示例。
在下文中一共展示了XAttribute.Should方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: When_asserting_an_xml_attribute_is_not_equal_to_a_different_xml_attribute_it_should_succeed
public void When_asserting_an_xml_attribute_is_not_equal_to_a_different_xml_attribute_it_should_succeed()
{
//-------------------------------------------------------------------------------------------------------------------
// Arrange
//-------------------------------------------------------------------------------------------------------------------
var attribute = new XAttribute("name", "value");
var otherXAttribute = new XAttribute("name2", "value");
//-------------------------------------------------------------------------------------------------------------------
// Act
//-------------------------------------------------------------------------------------------------------------------
Action act = () =>
attribute.Should().NotBe(otherXAttribute);
//-------------------------------------------------------------------------------------------------------------------
// Assert
//-------------------------------------------------------------------------------------------------------------------
act.ShouldNotThrow();
}
示例2: When_asserting_an_xml_attribute_is_equal_to_the_same_xml_attribute_it_should_succeed
public void When_asserting_an_xml_attribute_is_equal_to_the_same_xml_attribute_it_should_succeed()
{
//-------------------------------------------------------------------------------------------------------------------
// Arrange
//-------------------------------------------------------------------------------------------------------------------
var attribute = new XAttribute("name", "value");
var sameXAttribute = new XAttribute("name", "value");
//-------------------------------------------------------------------------------------------------------------------
// Act
//-------------------------------------------------------------------------------------------------------------------
Action act = () =>
attribute.Should().Be(sameXAttribute);
//-------------------------------------------------------------------------------------------------------------------
// Assert
//-------------------------------------------------------------------------------------------------------------------
act.ShouldNotThrow();
}
示例3: XAttribute
public void When_asserting_an_xml_attribute_is_equal_to_a_different_xml_attribute_it_should_fail_with_descriptive_message()
{
//-------------------------------------------------------------------------------------------------------------------
// Arrange
//-------------------------------------------------------------------------------------------------------------------
var attribute = new XAttribute("name", "value");
var otherXAttribute = new XAttribute("name2", "value");
//-------------------------------------------------------------------------------------------------------------------
// Act
//-------------------------------------------------------------------------------------------------------------------
Action act = () =>
attribute.Should().Be(otherXAttribute, "because we want to test the failure {0}", "message");
//-------------------------------------------------------------------------------------------------------------------
// Assert
//-------------------------------------------------------------------------------------------------------------------
string expectedMessage = string.Format("Expected XML attribute to be {0}" +
" because we want to test the failure message," +
" but found {1}", otherXAttribute, attribute);
act.ShouldThrow<AssertFailedException>().WithMessage(expectedMessage);
}
示例4: When_asserting_an_xml_attribute_is_not_equal_to_the_same_xml_attribute_it_should_throw
public void When_asserting_an_xml_attribute_is_not_equal_to_the_same_xml_attribute_it_should_throw()
{
//-------------------------------------------------------------------------------------------------------------------
// Arrange
//-------------------------------------------------------------------------------------------------------------------
var attribute = new XAttribute("name", "value");
var sameXAttribute = attribute;
//-------------------------------------------------------------------------------------------------------------------
// Act
//-------------------------------------------------------------------------------------------------------------------
Action act = () =>
attribute.Should().NotBe(sameXAttribute);
//-------------------------------------------------------------------------------------------------------------------
// Assert
//-------------------------------------------------------------------------------------------------------------------
act.ShouldThrow<AssertFailedException>();
}
示例5: When_asserting_attribute_has_a_specific_value_but_it_has_a_different_value_it_should_throw
public void When_asserting_attribute_has_a_specific_value_but_it_has_a_different_value_it_should_throw()
{
//-------------------------------------------------------------------------------------------------------------------
// Arrange
//-------------------------------------------------------------------------------------------------------------------
var attribute = new XAttribute("age", "36");
//-------------------------------------------------------------------------------------------------------------------
// Act
//-------------------------------------------------------------------------------------------------------------------
Action act = () =>
attribute.Should().HaveValue("16");
//-------------------------------------------------------------------------------------------------------------------
// Assert
//-------------------------------------------------------------------------------------------------------------------
act.ShouldThrow<AssertFailedException>();
}
示例6: When_asserting_attribute_has_a_specific_value_and_it_does_it_should_succeed
public void When_asserting_attribute_has_a_specific_value_and_it_does_it_should_succeed()
{
//-------------------------------------------------------------------------------------------------------------------
// Arrange
//-------------------------------------------------------------------------------------------------------------------
var attribute = new XAttribute("age", "36");
//-------------------------------------------------------------------------------------------------------------------
// Act
//-------------------------------------------------------------------------------------------------------------------
Action act = () =>
attribute.Should().HaveValue("36");
//-------------------------------------------------------------------------------------------------------------------
// Assert
//-------------------------------------------------------------------------------------------------------------------
act.ShouldNotThrow();
}
示例7: When_asserting_a_non_null_xml_attribute_is_not_null_it_should_succeed
public void When_asserting_a_non_null_xml_attribute_is_not_null_it_should_succeed()
{
//-------------------------------------------------------------------------------------------------------------------
// Arrange
//-------------------------------------------------------------------------------------------------------------------
var attribute = new XAttribute("name", "value");
//-------------------------------------------------------------------------------------------------------------------
// Act
//-------------------------------------------------------------------------------------------------------------------
Action act = () =>
attribute.Should().NotBeNull();
//-------------------------------------------------------------------------------------------------------------------
// Assert
//-------------------------------------------------------------------------------------------------------------------
act.ShouldNotThrow();
}
示例8: When_asserting_a_non_null_xml_attribute_is_null_it_should_fail_with_descriptive_message
public void When_asserting_a_non_null_xml_attribute_is_null_it_should_fail_with_descriptive_message()
{
//-------------------------------------------------------------------------------------------------------------------
// Arrange
//-------------------------------------------------------------------------------------------------------------------
var attribute = new XAttribute("name", "value");
//-------------------------------------------------------------------------------------------------------------------
// Act
//-------------------------------------------------------------------------------------------------------------------
Action act = () =>
attribute.Should().BeNull("because we want to test the failure {0}", "message");
//-------------------------------------------------------------------------------------------------------------------
// Assert
//-------------------------------------------------------------------------------------------------------------------
string expectedMessage = string.Format("Expected XML attribute to be <null>" +
" because we want to test the failure message," +
" but found {0}.", attribute);
act.ShouldThrow<AssertFailedException>().WithMessage(expectedMessage);
}
示例9: When_asserting_a_non_null_xml_attribute_is_null_it_should_fail
public void When_asserting_a_non_null_xml_attribute_is_null_it_should_fail()
{
//-------------------------------------------------------------------------------------------------------------------
// Arrange
//-------------------------------------------------------------------------------------------------------------------
var attribute = new XAttribute("name", "value");
//-------------------------------------------------------------------------------------------------------------------
// Act
//-------------------------------------------------------------------------------------------------------------------
Action act = () =>
attribute.Should().BeNull();
//-------------------------------------------------------------------------------------------------------------------
// Assert
//-------------------------------------------------------------------------------------------------------------------
act.ShouldThrow<AssertFailedException>();
}