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.