gpt4 book ai didi

junit - 如何让 Junit 4 忽略基本测试类?

转载 作者:行者123 更新时间:2023-12-02 20:52:13 29 4
gpt4 key购买 nike

我有一个用于许多测试的基类,其中有一些他们都需要的辅助方法。

它本身没有任何测试,但是 JUnit(在 Eclipse 中)正在调用它的测试运行器,并提示没有可以测试的方法。

如何让它忽略这个类?

我知道我可以添加一个 dummyTest 方法来解决问题,但它也会出现在所有子类中。

建议?

最佳答案

用于@Ignore注释。它也适用于类。看这个:

@Ignore public class IgnoreMe {
@Test public void test1() { ... }
@Test public void test2() { ... }
}

Also, you can annotate a class containing test methods with @Ignore and none of the containing tests will be executed.

来源:JUnit JavaDoc

关于junit - 如何让 Junit 4 忽略基本测试类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/461644/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com