我的单元测试文件有一个后缀* Test.java。 测试类扩展了一些基类,但基类没有测试,并且它们不以* Test.java结尾。
我尝试使用gradle test dsl来运行单元测试类,并排除基类。我的代码如下所示:
test {
includes ['**/*Test.java']
useJUnit {
excludeCategories 'com.category.to.ignore' // a category I have for test that I currently exclude
}
}
但是,有些基类会被触发并失败。 这是包含特定测试文件的正确方法吗?