@Run с аннотацией не найдена в Android студии - PullRequest
0 голосов
/ 05 марта 2019

Я и проект android studio, который имеет следующие тестовые зависимости:

implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation fileTree(include: ['*.aar'], dir: 'libs')

// Core library
androidTestImplementation 'androidx.test:core:1.1.0'

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

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

// Espresso dependencies
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-accessibility:3.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-web:3.1.1'
androidTestImplementation 'androidx.test.espresso.idling:idling-concurrent:3.1.1'

// The following Espresso dependency can be either "implementation"
// or "androidTestImplementation", depending on whether you want the
// dependency to appear on your APK's compile classpath or the test APK
// classpath.
androidTestImplementation 'androidx.test.espresso:espresso-idling-resource:3.1.1'

Тем не менее Android Studio не удается импортировать аннотацию @RunWith. У меня возникла та же проблема при использовании библиотеки разработки API 28 от andoridx. Я считаю, что androidx все еще отстой, даже когда его просят разработчика использовать библиотеки androidx !!

Моя версия Gradle - 3.3.2, а стабильная версия для Android - 3.3.2

1 Ответ

0 голосов
/ 05 марта 2019

Добавьте эти зависимости в build.gradle модуля приложения:

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'junit:junit:4.12'
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...