Instrument Options
Parameters
The fully-qualified Java package name for one of the packages in the test application. Any test case class that uses this package name is executed. Notice that this is not an Android package name; a test package has a single Android package name but may have several Java packages within it.
The fully-qualified Java class name for one of the test case classes. Only this test case class is executed.
or
#method name A fully-qualified test case class name, and one of its methods. Only this method is executed. Note the hash mark (#) between the class name and the method name.
Runs all test classes that extend InstrumentationTestCase.
Runs all test classes that do not extend either InstrumentationTestCase or PerformanceTestCase.
Runs a test method annotated by size. The annotations are @SmallTest, @MediumTest, and @LargeTest.
Runs all test classes that implement PerformanceTestCase.
Runs tests in debug mode.
Loads and logs all specified tests, but does not run them. The test information appears in STDOUT. Use this to verify combinations of other filters and test specifications.
Runs an EMMA code coverage analysis and writes the output to /data//coverage.ec on the device. To override the file location, use the coverageFile key that is described in the following entry.
Overrides the default location of the EMMA coverage file on the device. Specify this value as a path and filename in UNIX format. The default filename is described in the entry for the emma key.