Тесты не найдены при запуске инструментальных тестов с AndroidX - PullRequest
0 голосов
/ 03 декабря 2018

Я пытаюсь запустить стандартный ExampleInstrumentedTest в моем проекте Android (который использует AndroidX), но вместо этого появляется ошибка «Тесты не найдены».Я просмотрел другие вопросы и документацию и уверен, что все сделал правильно, но, может быть, я что-то пропускаю?

Вот build.gradle моего приложения:

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

android {
    compileSdkVersion 28
    defaultConfig {
        minSdkVersion 24
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.ext.junit.runners.AndroidJUnit4"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    // Gradle automatically adds 'android.test.runner' as a dependency.
    useLibrary 'android.test.runner'

    useLibrary 'android.test.base'
    useLibrary 'android.test.mock'
}

repositories {
    mavenCentral()
    maven {
        url("https://oss.sonatype.org/content/repositories/snapshots")
    }
    maven { url 'https://jitpack.io' }
}


dependencies {
    // Core library
    androidTestImplementation 'androidx.test:core:1.0.0'

    // AndroidJUnitRunner and JUnit Rules
    androidTestImplementation 'androidx.test:runner:1.1.0'
    androidTestImplementation 'androidx.test:rules:1.1.0'

    // Assertions
    androidTestImplementation 'androidx.test.ext:junit:1.0.0'
    androidTestImplementation 'androidx.test.ext:truth:1.0.0'
    androidTestImplementation 'com.google.truth:truth:0.42'

    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
}

// More dependencies...    

и ExampleInstrumentedTest.java:

import org.junit.Test;
import org.junit.runner.RunWith;

import androidx.test.core.app.ApplicationProvider;
import androidx.test.ext.junit.runners.AndroidJUnit4;

import static org.junit.Assert.*;

@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
    @Test
    public void useAppContext() {
        Context appContext = ApplicationProvider.getApplicationContext();
        assertEquals("XXX", appContext.getPackageName());
    }
}

, когда я запускаю код, я получаю «Тесты не найдены».

Ответы [ 2 ]

0 голосов
/ 21 января 2019

Я заменил -

testInstrumentationRunner "androidx.test.runner.AndroidJUnit4"

на -

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

0 голосов
/ 04 декабря 2018

Мне нужно было заменить моего бегуна

"androidx.test.ext.junit.runners.AndroidJUnit4"

на

"androidx.test.runner.AndroidJUnitRunner"
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...