Bazel has their JUnit4Runner in com.google.testing.junit package which seems to be based on junit4.
I tried to use Bazel JUnit4Runner with Categroy Annotation. But not worked for me.
And 1 seems to support testIncludeFilterRegexp but not junit's Categroy.
So does JUnit4Runner from Bazel not support Category?
I am not sure. any help would be appreciated.
                        
When structuring
TestSuitewith Category, I had to use@RunWith(Categories::class)Following code worked for me.