如何忽略JUnit测试中的toast?

时间:2017-03-07 11:43:20

标签: java android unit-testing mockito

我想在片段中测试一个方法但是在这个方法中我称之为Toast:

Toast.makeText(getActivity(), getString(R.string.signs), Toast.LENGTH_SHORT).show();

现在我想用JUnit和Powermockito测试方法。为此,我想忽略吐司。我试过这样:模仿Toast并忽略toast.show()

Toast toastMock = mock(Toast.class);
doReturn(toastMock).when(Toast.makeText(any(Activity.class), anyString(), Toast.LENGTH_SHORT));
doNothing().when(toastMock).show();

但是我总是得到一个RuntimeException,因为我在没有创建新的Toast对象的情况下调用Toast。我该如何绕过这个问题?

1 个答案:

答案 0 :(得分:0)

使用负责显示Toast的方法编写外部类,将其注入fragment并模拟此类行为。它可能是一个静态方法,因为您使用PowerMockito

如何注射?使用DaggerToothpick