Skip to content

LoyolaChicagoCode/clickcounter-android-java

Repository files navigation

Travis-CI Build Status BuddyBuild Status Bitrise Build Status Download from Bintray License

codecov.io Codacy Badge codebeat badge

Pull requests closed in Issues closed in Average time to resolve an issue Percentage of issues still open

Learning Objectives

  • Simple dependency injection
  • Event-driven program execution
  • State dependence in applications
  • Mapping the model-view-adapter architecture to Android (and the command-line)
  • Android application life cycle management (including rotation and back button)
  • Playing a notification sound in Android
  • Adapter pattern (wrapper, as opposed to the adapter in MVA)
  • Dependency inversion principle (DIP)
  • Automated unit and integration testing with JUnit
  • Testcase Superclass pattern for xUnit testing
  • Automated system testing by interacting with the GUI
  • Automated GUI testing in Android

Setting up the Environment

Check out the project using IntelliJ IDEA - this creates the local.properties file with the required line:

sdk.dir=<root folder of Android Studio's Android SDK installation>

Running the Application (in an emulator or connected Android device)

In IntelliJ: Run > Run app

Running the Tests

Unit tests including out-of-emulator system tests using Robolectric

In IntelliJ:

  • Before running tests, in the Android view right-click on edu.luc.etl.cs313 (test) - Run Tests in ...
  • should be one of the visible menu items toward the top, if so, click on that; if Run Tests in ...
  • is not there, go to the next step:
  • Now click Run > Edit Configurations... and under Android JUnit click on cs313 in app
  • On the Configuration tab, click the far-right icon in the Working Directory row and select
  • MODULE_DIR, then click OK
  • If you do not do this, running the unit tests from the Android view will not work!
  • Finally, right-click on edu.luc.etl.cs313 (test), then choose Run Tests in ...

You can also use Gradle in a Terminal window:

$ ./gradlew testDebug

You can view the resulting test reports in HTML by opening this file in your browser:

app/build/reports/tests/testDebugUnitTest/index.html

Unit test code coverage

In Gradle:

$ ./gradlew jacocoTestDebugUnitTestReport 

You can view the resulting test reports in HTML by opening this file in your browser:

app/build/reports/jacoco/jacocoTestDebugUnitTestReport/html/index.html

Android instrumentation tests (in-emulator/device system tests)

In IntelliJ:

  • In the Android view, right-click on edu.luc.etl.cs313... (androidTest), then choose Run Tests in 'edu.luc.etc...'

You can also use Gradle in a Terminal window:

$ ./gradlew connectedDebugAndroidTest

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages