Skip to content

Unit Tests

Valeria Rogatchevskikh edited this page Nov 17, 2016 · 2 revisions

Unit tests are located in the folder app/src/test, not to be confused with another folder called app/src/androidTest!

Tests use the Mockito and PowerMock, see links: https://github.com/jayway/powermock https://github.com/mockito/mockito

You can run tests:

  • Command line

./gradlew test

  • Android Studio Inside the folder app/src/test/java right click on the package and select run all tests.

Clone this wiki locally