类级别 nunit 上的顺序属性

发布于 2024-12-05 11:15:20 字数 222 浏览 0 评论 0原文

是否有类似于 顺序属性 我可以把它放在课堂上。 并在类级别而不是特定测试级别使用顺序变量,因为它与顺序属性一起使用。

我只需运行与我们正在使用的变量组合相关的 TestFixtureSetUp 即可。

谢谢

Is there something similar to Sequential Attribute that I can put on the class itself.
And use the Sequential variables on the class level and not on a specific test level as it works with Sequential Attribute.

I just have to run TestFixtureSetUp related to the combination of the variables we are using .

Thanks

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

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

发布评论

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

评论(1

青巷忧颜 2024-12-12 11:15:20

参数化测试装置怎么样?您可以在 TestFixture c'tor 中传递参数列表,例如:

[TestFixture("hello", "hello", "goodbye")]
[TestFixture("zip", "zip")]
[TestFixture(42, 42, 99)]
public class ParameterizedTestFixture
{
    private string eq1;
    private string eq2;
    private string neq;

    public ParameterizedTestFixture(string eq1, string eq2, string neq)
    {
        this.eq1 = eq1;
        this.eq2 = eq2;
        this.neq = neq;
    }

    [Test]
    public void TestEquality()
    {
        Assert.AreEqual(eq1, eq2);
        if (eq1 != null && eq2 != null)
            Assert.AreEqual(eq1.GetHashCode(), eq2.GetHashCode());
    }
}

How about Parameterized Test Fixtures? You could pass the list of parameters in your TestFixture c'tor, e.g:

[TestFixture("hello", "hello", "goodbye")]
[TestFixture("zip", "zip")]
[TestFixture(42, 42, 99)]
public class ParameterizedTestFixture
{
    private string eq1;
    private string eq2;
    private string neq;

    public ParameterizedTestFixture(string eq1, string eq2, string neq)
    {
        this.eq1 = eq1;
        this.eq2 = eq2;
        this.neq = neq;
    }

    [Test]
    public void TestEquality()
    {
        Assert.AreEqual(eq1, eq2);
        if (eq1 != null && eq2 != null)
            Assert.AreEqual(eq1.GetHashCode(), eq2.GetHashCode());
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文