本文整理汇总了C#中Microsoft.VisualStudio.TestPlatform.UnitTestFramework.ShouldBeEquivalentTo方法的典型用法代码示例。如果您正苦于以下问题:C# Microsoft.VisualStudio.TestPlatform.UnitTestFramework.ShouldBeEquivalentTo方法的具体用法?C# Microsoft.VisualStudio.TestPlatform.UnitTestFramework.ShouldBeEquivalentTo怎么用?C# Microsoft.VisualStudio.TestPlatform.UnitTestFramework.ShouldBeEquivalentTo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.VisualStudio.TestPlatform.UnitTestFramework
的用法示例。
在下文中一共展示了Microsoft.VisualStudio.TestPlatform.UnitTestFramework.ShouldBeEquivalentTo方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Then_it_should_ignore_small_differences_without_the_need_of_local_options
public void Then_it_should_ignore_small_differences_without_the_need_of_local_options()
{
var actual = new
{
Value = (1D/3D)
};
var expected = new
{
Value = 0.33D
};
Action act = () => actual.ShouldBeEquivalentTo(expected);
act.ShouldNotThrow();
}
示例2: Then_they_should_override_the_global_options
public void Then_they_should_override_the_global_options()
{
var actual = new
{
Value = (1D/3D)
};
var expected = new
{
Value = 0.33D
};
Action act = () => actual.ShouldBeEquivalentTo(expected, options => options
.Using<double>(ctx => ctx.Subject.Should().Be(ctx.Expectation))
.WhenTypeIs<double>());
act.ShouldThrow<AssertFailedException>().WithMessage("Expected*");
}
示例3: Then_this_should_not_throw
public void Then_this_should_not_throw()
{
var subject = new
{
Address = IPAddress.Parse("1.2.3.4"),
Word = "a"
};
var expected = new
{
Address = IPAddress.Parse("1.2.3.4"),
Word = "a"
};
Action act = () => subject.ShouldBeEquivalentTo(expected,
options => options.ComparingByValue<IPAddress>());
act.ShouldNotThrow();
}
示例4: Then_they_should_not_affect_any_other_assertions
public void Then_they_should_not_affect_any_other_assertions()
{
var actual = new
{
Value = (1D/3D)
};
var expected = new
{
Value = 0.33D
};
Action act = () => actual.ShouldBeEquivalentTo(expected);
act.ShouldNotThrow();
}