如何断言某个字符属于预期值列表?

发布于 2024-08-21 21:50:06 字数 423 浏览 7 评论 0原文

我有一个测试方法:

    [TestMethod()]
    public void test_chars()
    {
        MyBO target = new MyBO() { x = 'S' };
        char[] expected = {'D','d','M','m','L','l'};
        char actual = target.x;
        Assert.AreEqual(actual, expected); // ?
    }

如何使用 Assert.AreEqual 检查 target.x 是否在 char[]预期 中?因此,如果 'S' 不是该数组的一部分,则测试应该失败。这可能吗?

I have a test method:

    [TestMethod()]
    public void test_chars()
    {
        MyBO target = new MyBO() { x = 'S' };
        char[] expected = {'D','d','M','m','L','l'};
        char actual = target.x;
        Assert.AreEqual(actual, expected); // ?
    }

How can i check with Assert.AreEqual if target.x is in that char[] expected? So if 'S' isn't part of that array, the test should fail. Is this possible?

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

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

发布评论

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

评论(2

时间海 2024-08-28 21:50:06

就我个人而言,我喜欢以下内容:

Assert.IsTrue(expected.Any(x => x == actual));

这可以根据您需要的任何类型的比较进行定制。

Personally, I like the following:

Assert.IsTrue(expected.Any(x => x == actual));

This can be customized based on whatever type of comparison you need.

孤独患者 2024-08-28 21:50:06
Assert.IsTrue( ((IList)expected).Contains(actual));
Assert.IsTrue( ((IList)expected).Contains(actual));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文