我有一个测试,我希望它不应该启动
什么是好的做法:在测试中设置Ignore
? @Deprecated
?
我不想发布它,但会发出一条消息,告知我应该对将来进行更改以启动它。
答案 0 :(得分:12)
我通常使用@Ignore("comment on why it is ignored")
。 IMO评论对于其他开发人员来说非常重要,因为他们知道测试被禁用的原因或持续时间(也许只是暂时的)。
编辑:
默认情况下,只有Tests run: ... Skipped: 1 ...
这样的信息可用于忽略测试。如何打印Ignore
注释的值?
一种解决方案是制作自定义RunListener
:
public class PrintIgnoreRunListener extends RunListener {
@Override
public void testIgnored(Description description) throws Exception {
super.testIgnored(description);
Ignore ignore = description.getAnnotation(Ignore.class);
String ignoreMessage = String.format(
"@Ignore test method '%s()': '%s'",
description.getMethodName(), ignore.value());
System.out.println(ignoreMessage);
}
}
不幸的是,对于正常的JUnit测试,要使用自定义RunListener
,需要有一个自定义Runner
来注册PrintIgnoreRunListener
:
public class MyJUnit4Runner extends BlockJUnit4ClassRunner {
public MyJUnit4Runner(Class<?> clazz) throws InitializationError {
super(clazz);
}
@Override
public void run(RunNotifier notifier) {
notifier.addListener(new PrintIgnoreRunListener());
super.run(notifier);
}
}
最后一步是注释您的测试类:
@RunWith(MyJUnit4Runner.class)
public class MyTestClass {
// ...
}
如果您使用的是maven和surefire插件,则不需要客户Runner
,因为您可以配置surefire以使用自定义侦听器:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.10</version>
<configuration>
<properties>
<property>
<name>listener</name>
<value>com.acme.PrintIgnoreRunListener</value>
</property>
</properties>
</configuration>
</plugin>
答案 1 :(得分:0)
如果您使用测试套件,则可以在一个位置编辑所有测试用例。例如:
@RunWith(Suite.class)
@Suite.SuiteClasses({
WorkItemTOAssemblerTestOOC.class,
WorkItemTypeTOAssemblerTestOOC.class,
WorkRequestTOAssemblerTestOOC.class,
WorkRequestTypeTOAssemblerTestOOC.class,
WorkQueueTOAssemblerTestOOC.class
})
public class WorkFlowAssemblerTestSuite {
}