JUnit 测试说明
是否可以在JUnit中为未来的读者添加测试的简要描述(例如,正在测试的内容,一些简短的解释,预期的结果,...)?我的意思是像ScalaTest这样的东西,在那里我可以写:
test("Testing if true holds") {
assert(true)
}
理想的方法是使用一些注释,例如
@Test
@TestDescription("Testing if true holds")
public void testTrue() {
assert(true);
}
因此,如果我使用Maven(或类似的工具)运行这种带注释的测试,我可能会有与使用ScalaTest时在SBT中具有的输出类似的输出:
- Testing if entity gets saved correctly
- Testing if saving fails when field Name is not specified
- ...
目前,我可以使用非常长的方法名称或编写javadoc注释,这些注释不存在于构建输出中。
谢谢。