我正在 NUnit 中编写一个断言来检查值的存在。
有没有更简洁的方式来写这个声明?Assert.That(quoteRequest.Errors.Count(x => x.Code == ErrorCodes.TitleIsEmpty), 1)
我正在 NUnit 中编写一个断言来检查值的存在。
有没有更简洁的方式来写这个声明?Assert.That(quoteRequest.Errors.Count(x => x.Code == ErrorCodes.TitleIsEmpty), 1)
您可以使用CollectionAssert
该类来执行此操作:
CollectionAssert.Contains(IEnumerable expected, object actual);
所以你的看起来像:
CollectionAssert.Contains(quoteRequest.Errors, ErrorCodes.TitleIsEmpty);