Я пытаюсь написать модульный тест, который будет проверять, запускает ли кнопка правильное действие при нажатии, но у меня возникают проблемы с определением правильного кода для использования.Метод testButton запускает и проходит тесты, но затем вызывает ошибку:
[2012-02-29 16:18:08 - TroubleShootingAppTest] Test run failed: Instrumentation run failed due to 'java.lang.RuntimeException'
Затем тестирование завершается досрочно.Может кто-нибудь посоветовать, какой должен быть правильный код?
Вот что у меня есть:
package com.integral.troubleshooter.test;
import com.integral.troubleshooter.Question;
import com.integral.troubleshooter.R;
import com.integral.troubleshooter.TroubleShooterActivity;
import android.app.Activity;
import android.content.Intent;
import android.test.ActivityInstrumentationTestCase2;
import android.text.Layout;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.Spinner;
import android.widget.TextView;
public class TroubleShooterActivityTest extends
ActivityInstrumentationTestCase2<TroubleShooterActivity> {
private TroubleShooterActivity mActivity;
private Button mButton;
private TextView mTextView;
private ImageView mImageView;
private String resourceString;
private Activity nextActivity;
public TroubleShooterActivityTest() {
super("com.integral.troubleshooter.TroubleShooterActivity", TroubleShooterActivity.class);
}
/*
* Sets up the test environment before each test.
* @see android.test.ActivityInstrumentationTestCase2#setUp()
*/
@Override
protected void setUp() throws Exception {
super.setUp();
setActivityInitialTouchMode(false);
mActivity = getActivity();
mButton = (Button)mActivity.findViewById(R.id.troubleShooter);
mTextView = (TextView)mActivity.findViewById(R.id.title);
mImageView = (ImageView)mActivity.findViewById(R.id.IntegralLogo);
resourceString = mActivity.getString(R.string.CustomerSupport);
}
public void testPreconditions() {
assertTrue(mTextView != null);
assertTrue(mImageView != null);
}
public void testText(){
assertEquals(resourceString,(String)mTextView.getText());
}
public void testButton(){
mActivity.runOnUiThread(
new Runnable() {
public void run() {
mButton.performClick();
nextActivity = getActivity();
assertEquals(nextActivity, Question.class);
}
}
);
}
}