- Create an Android module from scratch.
- On the last page of the Wizard, choose the Test option.
- Specify the module to run unit tests against in the Tested Module drop-down list.
-
Click Finish.
Tip
To have a dedicated run configuration of the type Android Test created, click Yes in the Create Android Run Configuration dialog box that opens.
- When you click Finish on the last page of the new module Wizard, IntelliJ IDEA creates a module with the specified name and a stub test class for your main activity with the default name <main activity class name>Test.
- Complete the stub and populate the test module as necessary.
-
Specify the tests to run. Do one of the following:
- To run single test, open it in the editor and choose on the context menu. IntelliJ IDEA creates a Android Test temporary run configuration.
- To run all tests in a class or the entire test module, create an Android Test run/debug configuration.
- Save and edit a previously created temporary run configuration.
- Use the dedicated Android run configuration.
- To perform unit tests, choose the desired configuration from the drop-down list on the main toolbar and start the test according to it.
- Monitor the test execution and view test results in the Test Runner tab of the Run tool window.

.
Unit tests are stored in a dedicated module related to the target tested module. Each module to be tested requires a separate test module. For executing unit tests,
IntelliJ IDEA provides an Android-specific run configuration.