Closed kazurayam closed 1 year ago
The following worked:
task testFiltered(type:Test) {
useJUnitPlatform()
filter {
includeTestsMatching("*reduce.MaterialProductGroup_BuilderTest")
includeTestsMatching("*reduce.MaterialProductGroup_issue87Test")
}
}
For #350 , I edited the
base/build.gradle
and inserted the following lines:This worked fine.
Buit I wanted to create a custom task
mytest
which does the same above while leaving the originaltest
task as original. So I modifiedThis does not work.
How should I write the
mytest
task?