java.lang.Object | |||
↳ | junit.framework.Assert | ||
↳ | junit.framework.TestCase | ||
↳ | android.test.InstrumentationTestCase |
Known Direct Subclasses
ActivityTestCase,
ProviderTestCase<T extends ContentProvider>,
SingleLaunchActivityTestCase<T extends Activity>,
SyncBaseInstrumentation
|
Known Indirect Subclasses |
A test case that has access to Instrumentation
.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Inheritors can access the instrumentation using this.
| |||||||||||
This method was deprecated
in API level 5.
Incorrect spelling,
use
injectInstrumentation(android.app.Instrumentation) instead.
| |||||||||||
Injects instrumentation into this test case.
| |||||||||||
Utility method for launching an activity.
| |||||||||||
Utility method for launching an activity with a specific Intent.
| |||||||||||
Helper for running portions of a test on the UI thread.
| |||||||||||
Sends a series of key events through instrumentation and waits for idle.
| |||||||||||
Sends a series of key events through instrumentation and waits for idle.
| |||||||||||
Sends a series of key events through instrumentation and waits for idle.
|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Runs the current unit test.
| |||||||||||
Make sure all resources are cleaned up and garbage collected before moving on to the next
test.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
junit.framework.TestCase
| |||||||||||
From class
junit.framework.Assert
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
junit.framework.Test
|
Inheritors can access the instrumentation using this.
This method was deprecated
in API level 5.
Incorrect spelling,
use injectInstrumentation(android.app.Instrumentation)
instead.
Injects instrumentation into this test case. This method is called by the test runner during test setup.
instrumentation | the instrumentation to use with this instance |
---|
Injects instrumentation into this test case. This method is called by the test runner during test setup.
instrumentation | the instrumentation to use with this instance |
---|
Utility method for launching an activity.
The Intent
used to launch the Activity is:
action = ACTION_MAIN
extras = null, unless a custom bundle is provided here
All other fields are null or empty.
NOTE: The parameter pkg must refer to the package identifier of the package hosting the activity to be launched, which is specified in the AndroidManifest.xml file. This is not necessarily the same as the java package name.
pkg | The package hosting the activity to be launched. |
---|---|
activityCls | The activity class to launch. |
extras | Optional extra stuff to pass to the activity. |
Utility method for launching an activity with a specific Intent.
NOTE: The parameter pkg must refer to the package identifier of the package hosting the activity to be launched, which is specified in the AndroidManifest.xml file. This is not necessarily the same as the java package name.
pkg | The package hosting the activity to be launched. |
---|---|
activityCls | The activity class to launch. |
intent | The intent to launch with |
Helper for running portions of a test on the UI thread.
Note, in most cases it is simpler to annotate the test method with
UiThreadTest
, which will run the entire test method on the UI thread.
Use this method if you need to switch in and out of the UI thread to perform your test.
r | runnable containing test code in the run() method
|
---|
Throwable |
---|
Sends a series of key events through instrumentation and waits for idle. The sequence of keys is a string containing the key names as specified in KeyEvent, without the KEYCODE_ prefix. For instance: sendKeys("DPAD_LEFT A B C DPAD_CENTER"). Each key can be repeated by using the N* prefix. For instance, to send two KEYCODE_DPAD_LEFT, use the following: sendKeys("2*DPAD_LEFT").
keysSequence | The sequence of keys. |
---|
Sends a series of key events through instrumentation and waits for idle. For instance: sendKeys(KEYCODE_DPAD_LEFT, KEYCODE_DPAD_CENTER).
keys | The series of key codes to send through instrumentation. |
---|
Sends a series of key events through instrumentation and waits for idle. Each key code must be preceded by the number of times the key code must be sent. For instance: sendRepeatedKeys(1, KEYCODE_DPAD_CENTER, 2, KEYCODE_DPAD_LEFT).
keys | The series of key repeats and codes to send through instrumentation. |
---|
Runs the current unit test. If the unit test is annotated with
UiThreadTest
, the test is run on the UI thread.
Throwable |
---|
Make sure all resources are cleaned up and garbage collected before moving on to the next test. Subclasses that override this method should make sure they call super.tearDown() at the end of the overriding method.
Exception |
---|