We're using Robotium with the android.test.InstrumentationTestRunner
for our tests. Nevertheless we want to replace Robotium for Espresso, but we still have some doubts about it, since we have a machine with Jenkins for the CI.
Espresso uses the android.support.test.runner.AndroidJUnitRunner
while Robotium uses the aforementioned and first, we would like to be able to use both testing frameworks at the same time.
Is it possible? How can we specify that in the build.gradle
file? How can we configure our jenkins machine to have different jobs for the different testing frameworks?
I understand it is possible to have Espresso extend the ActivityInstrumentationTestCase2
, since our Robotium test classes also use a test runner which extends from ActivityInstrumentationTestCase2
, but we still need to tackle the problem of the instrumentation test runner.
From the Android developer docs, AndroidJUnitRunner replaces the older InstrumentationTestRunner.
"The
AndroidJUnitRunner
class is aJUnit
test runner that lets you runJUnit 3
orJUnit 4
-style test classes on Android devices, including those using theEspresso
andUI Automator
testing frameworks. The test runner handles loading your test package and the app under test to a device, running your tests, and reporting test results. This class replaces theInstrumentationTestRunner
class, which only supports JUnit 3 tests."http://developer.android.com/tools/testing-support-library/index.html#AndroidJUnitRunner
I've not found many examples of being able to run Instrumentation Tests (e.g. using Robotium). I've been looking for my own purposes.
The doc explains how to replace the test runner in your
build.gradle
file http://developer.android.com/tools/testing-support-library/index.html#setup