From 8f5434183ead0c36e1f10d40897e585c9b7cafca Mon Sep 17 00:00:00 2001
From: quddusc
public SpinnerActivityTest() {
- super("com.android.example.spinner", SpinnerActivity.class);
+ super(SpinnerActivity.class);
} // end of SpinnerActivityTest constructor definition
- This calls the superclass constructor with the Android package name (com.android.example.spinner)and main activity's class
- (SpinnerActivity.class) for the application under test. Android uses this information to find the application and activity to test.
+ This calls the superclass constructor with the main activity's class (SpinnerActivity.class) for the application under test. Android uses this information to find the application and activity to test.
You are now ready to add tests, by adding test methods to the class.