gpt4 book ai didi

android - Jenkins CI - 使用 TestObject 的 Gradle 构建插件自动执行测试

转载 作者:行者123 更新时间:2023-11-30 01:04:03 25 4
gpt4 key购买 nike

我正在尝试使用 TestObject 的 Gradle 构建插件自动执行我的 Espresso 测试(参见:https://testobject.com/blog/2015/11/testobject-gradle-plugin.html)。我已经像这样修改了我的 gradle.build 文件:

buildscript {
repositories {
mavenCentral()
maven { url 'http://nexus.testobject.org/nexus/content/repositories/testobject-public-repo' }
maven { url 'https://maven.fabric.io/public' }
}

dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.android.tools.build:gradle:0.12+'
classpath group: 'org.testobject', name: 'testobject-gradle-plugin', version: '0.0.39'
classpath 'io.fabric.tools:gradle:1.+'
}
}

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

repositories {
maven { url 'https://maven.fabric.io/public' }
}

apply plugin: 'android'
apply plugin: 'testobject'

android {
compileSdkVersion 24
buildToolsVersion '24.0.0'
lintOptions {
abortOnError false
}
defaultConfig {
applicationId "com.domain.appname"
// For production release, this should be v17
minSdkVersion 18
targetSdkVersion 24
versionCode 2
versionName "0.1.7"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

dataBinding {
enabled = true
}
}

testobject {
username "username"
password "password"
team "team-name"
app "app-name"
testSuite 8
runAsPackage true
failOnUnknown true
sizes = ["small","medium","large"]
}

dependencies {
androidTestCompile 'com.android.support.test:runner:0.3'
androidTestCompile 'com.android.support.test:rules:0.3'
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'

androidTestCompile 'com.android.support:support-annotations:24.0.0'
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.android.support:multidex:1.0.1'
compile 'com.parse.bolts:bolts-android:1.+'
compile 'com.parse:parse-android:1.+'
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services:9.0.1'
compile 'com.google.code.gson:gson:2.6.2'
compile('com.crashlytics.sdk.android:crashlytics:2.5.6@aar') {
transitive = true;
}
}

但是当我运行“gradle build”时,它不会像文档中指定的那样在“build”目录中创建文件夹“testobject”。有谁知道我做错了什么以及我该如何解决这个问题?关于如何使用 TestObject/Jenkins CI 自动化我的测试的任何其他建议(/教程)也将不胜感激。

最佳答案

Android 项目中有 2 个不同的构建目录。其中一个在项目根目录下,另一个在 app 目录下。我们在第二个下创建 XML。如果您在项目的根文件夹中运行此命令,您可以轻松找到该文件夹​​:

find * -type d | grep testobject

为了进一步帮助您,我建议您不要设置 runAsPackage 配置,因为只建议使用自定义 Test Runner 的客户这样做。如果您只想运行所有测试,也不需要尺寸配置。

关于android - Jenkins CI - 使用 TestObject 的 Gradle 构建插件自动执行测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39056427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com