Fluent Assertions:大致比较Lists中存储的对象的属性

Fluent Assertions: Approximately compare the properties of objects stored in Lists

这个问题建立在我之前问过的一个问题上:

如果我有 class,说 Vector3

public class Vector3
{
    public double X { get; }
    public double Y { get; }
    public double Z { get; }

    public Vector3(double x, double y, double z)
    {
        this.X = x;
        this.Y = y;
        this.Z = z;
    }
}

并且组成了两个列表,我如何大概比较两个列表中的Vector3对象的属性是否相同。这是我目前所拥有的(我使用的是 xUnit 框架,但这应该没有任何区别):

public double precision = 1e-5;

[Fact]
public void ApproximatelyCompareVector3List()
{
    // Arrange
    var expectedList = new List<Vector3>
    {
        new Vector3(0.5, 1, 3),
        new Vector3(0, 2, 4)
    };

    // Act
    var calculatedList = List<Vector3>
    {
        new Vector3(0.4999999, 1.0000001, 3),
        new Vector3(0.0000001, 2.0000001, 4)
    };

    //Assert
    calculatedList.ShouldBeEquivalentTo(expectedList, options => options
        .Using<double>(ctx => ctx.Subject.Should().BeApproximately(ctx.Expectation, precision))
        .When(info => info.SelectedMemberPath == "X" ||
                      info.SelectedMemberPath == "Y" ||
                      info.SelectedMemberPath == "Z" ));
}

然而,这似乎跳过了近似测试并且需要精确排序。是否可以使用精确排序或任意排序来大致比较列表中包含的对象的属性?

我知道这是一个有点老的问题,但无论如何如果有人偶然发现同样的问题:
Using<double>里面的代码没有执行,因为selected member path比较错误。您正在比较列表,这就是路径看起来像 [0].X

的原因

因此您可以通过以下方式修复它:

.When(info => info.SelectedMemberPath.EndsWith("X") ||
                  info.SelectedMemberPath.EndsWith("Y") ||
                  info.SelectedMemberPath.EndsWith("Z")));

或者只是:

.WhenTypeIs<double>());

默认情况下 ShouldBeEquivalentTo 中不需要精确排序。

更新SelectedMemeberPath 已重命名为 Path in v.6.0.0.