标签: android unit-testing testing android-testing
有没有办法为android-unit-test指定模式?目前它似乎是*Test.class,但我希望它是The*.class。
*Test.class
The*.class
答案 0 :(得分:0)
似乎可以解决这个问题:
tasks.withType(Test) { scanForTestClasses = false include "**/*The*.class" // whatever Ant pattern matches your test class files }