对类的多个属性执行断言

时间:2016-02-03 13:59:44

标签: fluent-assertions

我从文档中知道我可以做到这一点......

result.Should().BeOfType<MyClass>().Which.Property1.Should().Be("String")

有没有办法以类似

的方式测试多个属性
result.Should().BeOfType<MyClass>().Which.Property1.Should().Be("String").And.Property2.Should().Be(99);

如果可以执行上述任一测试而不必断言他们是'OfType'也是好的,但我怀疑代码没有其他方法可以知道哪些属性可用。

2 个答案:

答案 0 :(得分:2)

您可以针对匿名类型执行结构比较断言,如下所示:

result.ShouldBeEquivalentTo(new { Property1 = "String", Property2 = 99 }, options => options.ExcludingMissingMembers());

答案 1 :(得分:1)

一种简单的解决方案是使用BeOfType <>()返回的AndWhichConstraint类型。

这就是我最终要做的:

var myClassType = result.Should().BeOfType<MyClass>;
myClassType.Which.Property1.Should().Be("String");
myClassType.Which.Property2.Should().Be(99);