Issue
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.
Solution
From the Android developer docs, AndroidJUnitRunner replaces the older InstrumentationTestRunner and enables JUnit 4 tests.
The
AndroidJUnitRunnerclass is aJUnittest runner that lets you runJUnit 3orJUnit 4-style test classes on Android devices, including those using theEspressoandUI Automatortesting 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 the
InstrumentationTestRunnerclass, which only supports JUnit 3 tests.
https://developer.android.com/training/testing/junit-runner.html
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 https://developer.android.com/training/testing/unit-testing/instrumented-unit-tests
Answered By - JulianHarty
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.