Мои тесты эспрессо выполнялись до тех пор, пока мне не пришлось поддерживать multidex.
My build.gradle, у меня
minSdkVersion 14
targetSdkVersion 23
multiDexEnabled = true
testInstrumentationRunner "com.android.test.runner.MultiDexTestRunner"
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
androidTestCompile 'com.android.support.test.espresso:espresso-contrib:2.2.1'
androidTestCompile 'com.android.support.test:runner:0.4.1'
androidTestCompile 'com.android.support.test:rules:0.4.1'
dexOptions {
jumboMode true
javaMaxHeapSize "4g"
incremental true
}
Test1AuthenticationEspressoTest
@RunWith(AndroidJUnit4.class)
@SmallTest
public class Test1AuthenticationEspressoTest {
@Rule
public ActivityTestRule<WelcomeActivity> mActivityRule = new ActivityTestRule(WelcomeActivity.class);
}
Вот ошибка, которую я получаю
junit.framework.AssertionFailedError: тестов не найдено в com.livestrong.tracker.test.Test1AuthenticationEspressoTest
Любая помощь будет оценена. У кого-нибудь есть эспрессо, работающее с multidex?