Не удалось выполнить файл testng.xml из командной строки gradle - PullRequest
1 голос
/ 05 июня 2019

Я создал gradle-проект с kotlin в Android Studio для мобильной автоматизации и создал задачу в build.gradle. Пока я выполняю тест из командной строки, например: «gradle Test», мой тест не выполняется (выводится сообщение, которое это упоминание об этой задаче). Когда я выполняю напрямую из файла testng.xml, сценарии выполняются успешно.

Ниже пример кода для build.gradle App -> build.gradle

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 28
defaultConfig {
    applicationId "com.appium.automation"
    minSdkVersion 21
    targetSdkVersion 28`enter code here`
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"


}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
    }

}

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'io.appium:java-client:7.0.0'
implementation 'org.assertj:assertj-core:3.12.2'
implementation 'org.testng:testng:6.14.3'
implementation 'org.junit.jupiter:junit-jupiter-api:5.5.0-M1'
implementation 'io.cucumber:cucumber-java8:4.3.1'
implementation 'org.apache.commons:commons-lang3:3.9'
implementation 'io.cucumber:cucumber-testng:4.3.1'
implementation 'io.cucumber:gherkin:5.1.0'
implementation 'com.aventstack:extentreports:4.0.9'
}

tasks.withType(Test) {
print("Hi")
useTestNG(){
    println("Hi2")
    suites '/app/testng.xml'
    println("Hi3")
}
}

Проект -> build.gradle

buildscript {
ext.kotlin_version = '1.3.31'
repositories {
    google()
    jcenter()
    mavenCentral()
}

dependencies {
    classpath 'com.android.tools.build:gradle:3.4.0'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}
allprojects {
repositories {
    google()
    jcenter()
    mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...