0

Bazel 在 com.google.testing.junit 包中有他们的JUnit4Runner,它似乎基于 junit4。

我尝试使用带有Categroy注释的 Bazel JUnit4Runner。但对我不起作用。

1似乎支持testIncludeFilterRegexp但不支持 junitCategroy的.

那么来自 Bazel 的 JUnit4Runner 不支持Category吗?我不知道。任何帮助,将不胜感激。

4

1 回答 1

0

使用类别进行结构化TestSuite时,我必须使用@RunWith(Categories::class)

以下代码对我有用。

@RunWith(Categories::class)
@Suite.SuiteClasses(AllTests::class)
@Categories.IncludeCategory(EnormousTest::class)
class AllEnormousTests

@RunWith(ClasspathSuite::class)
class AllTests
于 2021-12-15T05:45:34.927 回答