如何构建新的 NUnit 约束

发布于 2024-10-26 18:12:00 字数 495 浏览 0 评论 0原文

我有一个扩展方法,断言给定值是列表中的值之一。

public static void IsEither<T>(this T value, params T[] allowedValues)
{
     EqualConstraint isInAllowed = null;

     foreach (var allowed in allowedValues)
         isInAllowed = isInAllowed == null ? 
                          Is.EqualTo(allowed) : isInAllowed.Or.EqualTo(allowed);

     Assert.That(value, isInAllowed);
}

我想知道是否有其他更好/优雅的方法来做到这一点,特别是使用 NUnit 的 ConstraintBuilder、ConstraintExpression、ConstraintOperator 等

I have an extension method that asserts a given value is one of the values in the list.

public static void IsEither<T>(this T value, params T[] allowedValues)
{
     EqualConstraint isInAllowed = null;

     foreach (var allowed in allowedValues)
         isInAllowed = isInAllowed == null ? 
                          Is.EqualTo(allowed) : isInAllowed.Or.EqualTo(allowed);

     Assert.That(value, isInAllowed);
}

I wonder is there any other better/elegant way of doing this, particularly using NUnit's ConstraintBuilder, ConstraintExpression, ConstraintOperator etc

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

GRAY°灰色天空 2024-11-02 18:12:00

NUnit 中有一个 CollectionAssert 应该会有所帮助。如果您断言一个项目集合包含另一个项目,您可以尝试如下操作:

public static void IsEither<T>(this T value, params T[] allowedValues)
{
    CollectionAssert.Contains(allowedValues, value);
}

There is a CollectionAssert in NUnit that should help. If you're asserting that a collection of items contains another item, you might try something like this:

public static void IsEither<T>(this T value, params T[] allowedValues)
{
    CollectionAssert.Contains(allowedValues, value);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文