March 2015
Beginner to intermediate
274 pages
6h 1m
English
The InstrumentationTestCase class is the direct or indirect base class for various test cases that have access to Instrumentation. This is the list of the most important direct and indirect subclasses:
ActivityTestCaseProviderTestCase2<T extends ContentProvider>SingleLaunchActivityTestCase<T extends Activity>SyncBaseInstrumentationActivityInstrumentationTestCase2<T extends Activity>ActivityUnitTestCase<T extends Activity>The InstrumentationTestCase class is in the android.test package, and extends junit.framework.TestCase, which extends junit.framework.Assert.
These utility methods are used to launch Activities from a test. If the Intent is not specified using ...
Read now
Unlock full access