.net 如何使用fluent-assertionAssert集合中的所有项是不同的?

k7fdbhmy  于 2023-03-13  发布在  .NET
关注(0)|答案(1)|浏览(91)

我想确保集合中的所有项都是不同的。怎么做呢?
让我们说:

IEnumerable collection = new[] { 1, 2, 5, 8 };

collection.Should().BeAllDifferent(); // NOTE: BeAllDifferent doesn't exist
ct3nt3jp

ct3nt3jp1#

尝试使用集合.Should().OnlyHaveUniqueItems().和.Should().BeOfType();

相关问题