I am new to Android world and Android automation. I am working on test automation for banking app, where first is login page after login successful there will be transaction page and setting pages. I wrote 3 classes, one for instrumentation with ActivityInstrumentation class which creates the handle of msolo, 2nd is AppTest which is my test class where I will write my test cases, and 3rd is AppUIHelper where I will have my test helper methods.
Below is my error that I am getting.
java.lang.NullPointerException
at com.androidApp.Business.AppUILayer.PendingDevice(AppUILayer.java:34)
at com.androidApp.Test.AppTest.testPendingDevice(AppTest.java:72)
at java.lang.reflect.Method.invokeNative(Native Method)
at android.test.InstrumentationTestCase.runMethod(InstrumentationTestCase.java:204)
at android.test.InstrumentationTestCase.runTest(InstrumentationTestCase.java:194)
at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:169)
at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:154)
at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:520)
at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1447)
Where am I making a mistake? Please help me solve this issue please.
Below are my class files:
Used for android activity instrumentation: Instrumentation class:
public class InstrumentationHandle extends ActitvityInstrumentationTestCase2
{
protected Solo msolo;
private static final String TARGET_PACKAGE_ID="com.android.mobileandroidapp";
private static final String LAUNCHER_ACTIVITY_FULL_CLASSNAME="com.android.mobileandroidapp.LoginActivity";
private static Class launcherActivityClass;
Logger log = new Logger();
public AppUILayer appUI = null;
static {
try {
launcherActivityClass=Class.forName(LAUNCHER_ACTIVITY_FULL_CLASSNAME);
} catch (ClassNotFoundException e) {
throw new RuntimeException(e);
}
}
/// Constructer
public InstrumentationHandle() throws ClassNotFoundException {
super(TARGET_PACKAGE_ID,launcherActivityClass);
}
protected void setUp() {
msolo = new Solo(getInstrumentation(), getActivity());
}
public Solo getSolo() {
return msolo;
}
}
Second file is: AppTest (where I am thinking to write all the test cases)
public class AppTest extends InstrumentationHandle {
public boolean result;
public AppUILayer app= new AppUILayer();
public AppTest() throws ClassNotFoundException {
super();
}
protected void setUp() {
super.setUp();
}
public void testPendingDevice() throws InterruptedException {
String loginID="MobileCNP1";
String password="CNPMobile1";
result= app.PendingDevice(loginID, password);
assertTrue(result);
}
public void tearDown() throws Exception {
//solo.finishOpenedActivities();
}
}
3rd is the Helper class for test cases: AppUIHelper
public class AppUIHelper extends InstrumentationHandle {
public AppUILayer() throws ClassNotFoundException {
}
public boolean result= false;
public boolean PendingDevice(String login, String password) throws InterruptedException {
msolo.enterText(0, login);
msolo.enterText(1, password);
//Click on Login button
msolo.clickOnButton(0);
Thread.sleep(5000);
result=msolo.waitForText("The mobile Device has already been registered but is pending approval by the account administrator");
msolo.clickOnButton("OK");
return result;
}
}
com.androidApp.Business.AppUILayer.PendingDevice(AppUILayer.java:34)– SiB Sep 7 '12 at 4:36msoloprobably hasn't been assigned a value. Do you ever assign a value intomsolo? – Brian Sep 7 '12 at 4:54msolovariable. It's the only one that the.accessor is used on in the whole method :) (Not counting Thread.sleep(), but I would be scared if that threw an NPE.) – Brian Sep 7 '12 at 4:56