Functional tests

Functional tests are used to test whether several components of an app work together as expected. For example, you can create a functional test to confirm that tapping a certain button opens a new Activity. There are several functional testing frameworks for Android, but the easiest way to get started with functional testing is using the Espresso framework.

Espresso

Google created Espresso to make it easier for developers to write functional tests. The library is provided through the Android support repository, so you can install it using the SDK Manager.

In order to run tests on a device, you need to define a test runner. Through the testing support library, Google provides the AndroidJUnitRunner test runner, which helps you run ...

Get Gradle for Android now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.