Я пытаюсь запустить тестовый пример в Android Studio, который должен открыть навигационную панель, щелкнуть пункт меню и проверить, перешел ли он к этому элементу.
Когда я пытаюсь запустить тест, яполучить следующую ошибку
Started running tests
Test running failed: Instrumentation run failed due to 'Process crashed.'
Empty test suite.
Logcat показывает;
-02-04 13:41:17.703 10121-10121/? E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.damhan.dublinbusassist, PID: 10121
java.lang.RuntimeException: Unable to instantiate instrumentation ComponentInfo{com.damhan.dublinbusassist.test/android.test.runner.AndroidJUnitRunner}: java.lang.ClassNotFoundException: Didn't find class "android.test.runner.AndroidJUnitRunner" on path: DexPathList...
Вот мой тестовый пример:
package com.damhan.dublinbusassist;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import android.view.Gravity;
import org.junit.Test;
import org.junit.runner.RunWith;
import static android.support.test.espresso.Espresso.onView;
import static android.support.test.espresso.action.ViewActions.click;
import static android.support.test.espresso.action.ViewActions.closeSoftKeyboard;
import static android.support.test.espresso.action.ViewActions.typeText;
import static android.support.test.espresso.assertion.ViewAssertions.matches;
import static android.support.test.espresso.contrib.DrawerActions.open;
import static android.support.test.espresso.contrib.DrawerMatchers.isClosed;
import static android.support.test.espresso.contrib.NavigationViewActions.navigateTo;
import static android.support.test.espresso.matcher.ViewMatchers.withId;
import static android.support.test.espresso.matcher.ViewMatchers.withText;
@RunWith(AndroidJUnit4.class)
public class NavigationDrawerTest {
@Test
public void clickRouteNavigationItem_ShowsRouteScreen() {
// Open Drawer to click on navigation.
onView(withId(R.id.drawer_layout))
.check(matches(isClosed(Gravity.LEFT))) // Left Drawer should be closed.
.perform(open()); // Open Drawer
onView(withId(R.id.nav_view))
.perform(navigateTo(R.id.route_menu));
String expectedNoStatisticsText = InstrumentationRegistry.getTargetContext()
.getString(R.string.routePageText);
onView(withId(R.id.route_menu)).check(matches(withText(expectedNoStatisticsText)));
}
}
И мой build.grade выглядит следующим образом;
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.damhan.dublinbusassist"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
// Required -- JUnit 4 framework
testImplementation 'junit:junit:4.12'
// Optional -- Mockito framework
testImplementation 'org.mockito:mockito-core:1.10.19'
androidTestImplementation 'com.android.support:support-annotations:27.1.1'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
androidTestImplementation 'org.hamcrest:hamcrest-library:1.3'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-contrib:3.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-intents:3.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-accessibility:3.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-web:3.0.2'
androidTestImplementation 'com.android.support.test.espresso.idling:idling-concurrent:3.0.2'
}
Я очень новичок в написании тестовых случаев, поэтому я понимаю, что, скорее всего, происходят ошибки, и я взял из примера github googleub для тестирования Android, поэтому некоторые из них могут быть в настоящее время названы неправильно, но я бы хотеложидай, что он хотя бы побежит!