如何在 JUnit 中实例化共享资源

发布于 2024-08-12 11:26:02 字数 721 浏览 4 评论 0原文

我注意到 jUnit 为每个正在测试的方法运行我的测试类的构造函数。下面是一个示例:


public class TestTest {
    protected BigUglyResource bur;
    public TestTest(){
        bur=new BigUglyResource();
        System.out.println("TestTest()");
    }
    @Test
    public void test1(){
        System.out.printf("test1()\n");
    }

    @Test
    public void test2(){
        System.out.printf("test2()\n");
    }
    @Test
    public void test3(){
        System.out.printf("test3()\n");
    }
}

给出以下结果:

TestTest()
test1()
TestTest()
test2()
TestTest()
test3()

调用 BigUglyResource 的构造函数太耗时,我宁愿只构建一次。我知道你可以使用@BeforeClass来运行一个方法一次,但@BeforeClass仅适用于静态方法。静态方法无法访问类属性,如上例中的 BigUglyResource。除了构建单例之外,还有哪些选择?

I noticed that jUnit runs the constructor of my test class for each method being tested. Here's an example:


public class TestTest {
    protected BigUglyResource bur;
    public TestTest(){
        bur=new BigUglyResource();
        System.out.println("TestTest()");
    }
    @Test
    public void test1(){
        System.out.printf("test1()\n");
    }

    @Test
    public void test2(){
        System.out.printf("test2()\n");
    }
    @Test
    public void test3(){
        System.out.printf("test3()\n");
    }
}

Gives the following result:

TestTest()
test1()
TestTest()
test2()
TestTest()
test3()

Calling the constructor to BigUglyResource is too time-consuming, I'd prefer to build it only once. I know you can use @BeforeClass to run a method once, but @BeforeClass is only for static methods. Static methods can't access a class property like BigUglyResource in the example above. Other than building a Singleton, what options are there?

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

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

发布评论

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

评论(3

轻拂→两袖风尘 2024-08-19 11:26:02

不能将 BigUglyResource 声明为静态吗?我通常就是这样做的。

private static BigUglyResource bur;

@BeforeClass
public static void before(){
   bur=new BigUglyResource();
}

Can't you declare the BigUglyResource static? This is how I normally do it.

private static BigUglyResource bur;

@BeforeClass
public static void before(){
   bur=new BigUglyResource();
}
旧人 2024-08-19 11:26:02

您可以使“bur”静态:

protected static BigUglyResource bur;

并使用@BeforeClass。

You could make "bur" static:

protected static BigUglyResource bur;

And use @BeforeClass.

时光匆匆的小流年 2024-08-19 11:26:02

对于 JUnit5 用户:您必须使用 @BeforeAll 注释而不是 @BeforeEach,其余部分与 bruno 和 Russ 的答案相同。

private static BigUglyResource bur;

@BeforeAll
public static void before(){
   bur=new BigUglyResource();
}

For JUnit5 users: you have to use @BeforeAll annotation instead of @BeforeEach, the rest stays the same as in bruno's and Russ'es answers.

private static BigUglyResource bur;

@BeforeAll
public static void before(){
   bur=new BigUglyResource();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文