我从文档中知道我可以做到这一点......
result.Should().BeOfType<MyClass>().Which.Property1.Should().Be("String")
有没有办法以类似
的方式测试多个属性result.Should().BeOfType<MyClass>().Which.Property1.Should().Be("String").And.Property2.Should().Be(99);
如果可以执行上述任一测试而不必断言他们是'OfType'也是好的,但我怀疑代码没有其他方法可以知道哪些属性可用。
答案 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);