AndroidJUnit4ClassRunner throwing RuntimeException Android



我正在开发一个Android应用程序。我正在为机器人编写Junit测试,我是Junit测试用例的新手。

在应用程序内,我有一个相对布局,单击它时我正在打开日期选择器对话框,一旦用户选择我在 TextView 中显示的日期。

我想用 Junit 测试这些操作。当我尝试运行测试用例时,它抛出以下错误:

java.lang.RuntimeException: Can't create handler inside thread Thread[Instr: androidx.test.runner.AndroidJUnitRunner,5,main] that has not called Looper.prepare()
at android.os.Handler.<init>(Handler.java:205)
at android.os.Handler.<init>(Handler.java:118)
at android.app.Dialog.<init>(Dialog.java:123)
at android.app.AlertDialog.<init>(AlertDialog.java:201)
at android.app.AlertDialog.<init>(AlertDialog.java:197)
at android.app.DatePickerDialog.<init>(DatePickerDialog.java:115)
at android.app.DatePickerDialog.<init>(DatePickerDialog.java:90)
at com.example.sride.DataSelectedTest.loginClickedSuccess(DataSelectedTest.java:74)

这是我的测试类:

@RunWith(AndroidJUnit4ClassRunner.class)
public class DataSelectedTest {
private Context appContext;
@Test
public void useAppContext() {
// Context of the app under test.
appContext = ApplicationProvider.getApplicationContext();
assertEquals("com.example.sride", appContext.getPackageName());
}
@Rule
public ActivityTestRule<MainActivity> mActivityRule = new ActivityTestRule<>(MainActivity.class);
@Test
public void datCheckSuccess() throws Throwable {
Log.e("@Test", "Performing date check success test");
Espresso.onView((withId(R.id.calendarRl)))
.perform(ViewActions.click());
// throwing error at this line
// If I remove this line then it is working as expected
DatePickerDialog datePickerDialog =
new DatePickerDialog(mActivityRule.getActivity(), null, 2012, 6, 7);
datePickerDialog.dismiss();
Espresso.onView(withId(R.id.dateTv))
.check(matches(withText("7" + "-" + (6 + 1) + "-" + "2012")));
}
}

我也尝试了这些代码在runOnUiTHeard()内运行,但问题仍然存在。

我也尝试了这些代码在Handler()内运行,但测试将继续运行而不显示任何输出

我错过了什么吗?

这是一个链接,可以解决您的问题。要处理活动的真实实例,您需要进行仪器测试,或者可能需要使用Roboelectric。

插拔单元类测试 - 无法在未调用 Looper.prepare(( 的线程中创建处理程序

相关内容

  • 没有找到相关文章

最新更新