具有不同后缀的 Junit 工具箱 WildcardPatternSuite?

Junit Toolbox WildcardPatternSuite with different Suffix?

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

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

}

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

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