SingleLaunchActivityTestCasepublic abstract class SingleLaunchActivityTestCase extends InstrumentationTestCase If you would like to test a single activity with an
{@link android.test.InstrumentationTestCase}, this provides some of the boiler plate to
launch and finish the activity in {@link #setUp} and {@link #tearDown}.
This launches the activity only once for the entire class instead of doing it
in every setup / teardown call. |
Fields Summary |
---|
String | mPackage | Class | mActivityClass | private static int | sTestCaseCounter | private static boolean | sActivityLaunchedFlag | private static android.app.Activity | sActivityThe activity that will be set up for use in each test method. |
Constructors Summary |
---|
public SingleLaunchActivityTestCase(String pkg, Class activityClass)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.
mPackage = pkg;
mActivityClass = activityClass;
sTestCaseCounter ++;
|
Methods Summary |
---|
public T | getActivity()
return (T) sActivity;
| protected void | setUp()
super.setUp();
// If it is the first test case, launch the activity.
if (!sActivityLaunchedFlag) {
// by default, not in touch mode
getInstrumentation().setInTouchMode(false);
sActivity = launchActivity(mPackage, mActivityClass, null);
sActivityLaunchedFlag = true;
}
| protected void | tearDown()
// If it is the last test case, call finish on the activity.
sTestCaseCounter --;
if (sTestCaseCounter == 0) {
sActivity.finish();
}
super.tearDown();
| public void | testActivityTestCaseSetUpProperly()
assertNotNull("activity should be launched successfully", sActivity);
|
|