在我的Android应用程序中,我想排除软件包中的一些测试用例,以便在test
文件中使用build.gradle
任务。例如:
apply plugin: 'com.android.library'
test{
exclude '**/calltest/Summary.class'
}
如果同步该项目,则会出现以下异常:
* What went wrong:
A problem occurred evaluating project ':SdkModule'.
> Could not find method test() for arguments [build_4g3vf7b615x3x1p7i9ty0pt1l$_run_closure1@73d026ca] on project ':SdkModule' of type org.gradle.api.Project.
如果我添加apply plugin : 'java'
CONFIGURE FAILED in 1s
The 'java' plugin has been applied, but it is not compatible with the Android plugins.
请帮助我。
答案 0 :(得分:0)
尝试为我的Jenkins构建生成XML测试报告时遇到类似的问题。
与测试相关的设置应位于testOptions
中。我的档案:
android {
testOptions {
unitTests.includeAndroidResources = true
unitTests.all {
reports {
junitXml.enabled = true
html.enabled = false
}
}
}