Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 489 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 489 Bytes

Structure:

  • app/ - Main application
  • app/test/ - Unit tests
  • app/androidTest/ - Instrumentation tests

Install Application

  • To install the application execute:
./gradlew app:installDebug

Running Tests

Running Instrumentation Tests

From command-line via Gradle

  • To run the Instrumentation tests execute:
./gradlew app:connectedAndroidTest

Running Unit Tests

  • To run all the local unit tests execute:
./gradlew app:test