Junit Toolbox WildcardPatternSuite有不同的后缀?

时间:2016-08-03 13:50:51

标签: maven junit junit-runner

我使用Junit工具箱来运行我的单元和集成测试。它工作正常。现在,我已经创建了另一层测试,我也想用junit工具箱运行,但使用不同的后缀,而不是* IT或* Test。

@RunWith(WildcardPatternSuite.class)
@SuiteClasses("**/*BCT.class")
public class AllBCTTests {

}

但是这些测试没有在我的Maven构建中运行。我需要做些什么来使用不同的后缀来运行这些测试?

1 个答案:

答案 0 :(得分:0)

以上代码可行。 WildcardPatternSuite可以使用不同的后缀。