我正在尝试使用PowerMock和Mockito对我的一个方法进行单元测试,并为我已经模拟过的一个对象获取NUllPointerException,并在我的测试中定义了行为。
这是我试图测试的代码
protected void setTabList() {
List<ActionBar.Tab> list = TabAdapter.get().getAllEnabledTabs();
listAdapter.setTabList(list);
int itemCount = list.size();
if (itemCount == 1 && list.get(0).equals(TabAdapter.KEYPAD_TAB)) {
header.setVisibility(View.VISIBLE);
listAdapter.hide();
}
}
这是测试代码
@RunWith(PowerMockRunner.class)
@PrepareForTest({Log.class, TabFragment.class, TextView.class, SystemProperties.class})
public class TabFragmentTests extends TestCase {
@Before
public void setUp() {
suppress(method(Log.class, "println_native"));
suppress(everythingDeclaredIn(TextView.class));
suppress(method(SystemProperties.class, "native_get_boolean"));
suppress(method(SystemProperties.class, "native_get", String.class));
tabFragment = new TabFragment();
listAdapter = Mockito.mock(TabList.class);
}
@Test
public void testSetTabList() {
assertNotNull(tabFragment);
assertNotNull(listAdapter);
TabAdapter instance = TabAdapter.get();
TabAdapter spy = spy(instance);
List<ActionBar.Tab> list = new ArrayList<ActionBar.Tab>();
list.add(KEYPAD_TAB);
doAnswer(new Answer<String>() {
@Override
public String answer (InvocationOnMock invocation) {
return "set Tabs";
}
}).when(listAdapter).setTabList(list);
doAnswer(new Answer<String>() {
@Override
public String answer (InvocationOnMock invocation) {
return "hide";
}
}).when(listAdapter).hide();
doReturn(list).when(spy).getAllEnabledTabs();
tabFragment.setTabList();
verify(listAdapter, times(1)).hide();
}
当我运行测试并调用tabFragment.setTabList()
时,listAdapter
中的setTabList()
会引发NPE。我试图理解为什么listAdapter.setTabList(list)
没有被&#34;答案&#34;我在测试中有API。
我也尝试过使用Mockito.doNothing().when(listAdapter).setTabList(list)
,但这并没有解决问题。
另一个观察是我在TabFragment类中创建一个虚拟getTestString(listAdapter)
方法并使用tabFragment.getTestString(listAdapter)
从我的测试中调用它来传递模拟的listAdapter作为参数,它没有通过NPE。这是否意味着我必须将模拟对象显式传递给方法调用?
答案 0 :(得分:0)
您正在覆盖这样的方法调用:
when(listAdapter).setTabList(list);
然后你这样称呼它:
tabFragment.setTabList();
我不明白这是怎么回事。 setTabList(列表);和setTabList();称不同的方法。
答案 1 :(得分:0)
我认为您忘了添加&#34; TabAdapter&#34;上课到#34; PrepareForTest&#34;注释:
@PrepareForTest({Log.class, TabAdapter.class, TabFragment.class, TextView.class, SystemProperties.class})