我试图使用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)
不能被测试中使用的“答案” API代替。我也尝试使用
Mockito.doNothing().when(listAdapter).setTabList(list)
,但这不能解决问题。另一个观察结果是,当我在TabFragment类中创建虚拟
getTestString(listAdapter)
方法并在测试中使用tabFragment.getTestString(listAdapter)
调用它时,将模拟列表适配器作为参数传递,它没有通过NPE。这是否意味着我必须将模拟对象显式传递给方法调用? 最佳答案
您正在重写这样的方法调用:
when(listAdapter).setTabList(list);
但是您可以这样称呼它:
tabFragment.setTabList();
我不知道那将如何工作。 setTabList(list);和setTabList();调用不同的方法。