我有我们使用 Gradle 构建的项目。我现在正在尝试将我们的测试添加到构建中。我不完全确定这是如何工作的,或者实际使用的语法是什么。
这是我一直在尝试工作的测试应用程序的构建脚本。我的测试在 src/instrumentTest/java 目录中。
buildscript {
repositories {
maven { url 'http://repo1.maven.org/maven2' }
}
dependencies {
classpath 'com.android.tools.build:gradle:0.4'
}
}
apply plugin: 'android'
dependencies {
compile files('libs/android-support-v4.jar')
}
android {
compileSdkVersion 17
buildToolsVersion "17.0.0"
defaultConfig {
minSdkVersion 8
targetSdkVersion 16
testPackage "com.example.myapplication.test"
testInstrumentationRunner "android.test.InstrumentationTestRunner"
}
}
当我进行构建时,我收到以下错误。
FAILURE:构建失败并出现异常。
其中:构建文件“/Users/kbrown/AndroidStudioProjects/MyApplicationProject/MyApplication/build.gradle”行:22
出了什么问题:评估项目“:MyApplication”时出现问题。
在 ProductFlavorDsl_Decorated{name=main, minSdkVersion=8, targetSdkVersion=16, renderscriptTargetApi=-1, versionCode=-1, versionName=null, packageName=null 上找不到参数 [com.example.myapplication.test] 的方法 testPackage() ,testPackageName=null,testInstrumentationRunner=null,signingConfig=null}。