This package contains unit tests for the OSU app based on the Android Testing Support Library. The test cases are built using the JUnit and Mockito libraries.
The easiest way to run tests is simply run
frameworks/base/packages/Osu2/tests/runtests.sh
runtests.sh
will build the test project and all of its dependencies and push the APK to the connected device. It will then run the tests on the device.
To enable syncing data to the device for first time after clean reflash:
See below for a few example of options to limit which tests are run. See the AndroidJUnitRunner Documentation for more details on the supported options.
runtests.sh -e package com.android.osu runtests.sh -e class com.android.osu.NetworkConnectionTest
If you manually build and push the test APK to the device you can run tests using
adb shell am instrument -w 'com.android.osu.tests/android.support.test.runner.AndroidJUnitRunner'
Tests can be added by adding classes to the src directory. JUnit4 style test cases can be written by simply annotating test methods with org.junit.Test
.
If you are trying to debug why tests are not doing what you expected, you can add android log statements and use logcat to view them. The beginning and end of every tests is automatically logged with the tag TestRunner
.