gpt4 book ai didi

java - 使用 PowerMock/Mockito 时模拟对象为 null

转载 作者:太空宇宙 更新时间:2023-11-04 14:27:41 25 4
gpt4 key购买 nike

我正在尝试使用 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() 时,setTabList() 中的 listAdapter 抛出 NPE。我试图理解为什么 listAdapter.setTabList(list) 没有被我在测试中使用的“answer”API 替换。

我也尝试过使用 Mockito.doNothing().when(listAdapter).setTabList(list) 但这并不能解决问题。

另一个观察结果是,当我在 TabFragment 类中创建一个虚拟 getTestString(listAdapter) 方法,并使用通过模拟 listAdapter 的测试中的 tabFragment.getTestString(listAdapter) 调用它时作为一个论点,它不通过 NPE。这是否意味着我必须显式地将模拟对象传递给方法调用?

最佳答案

您正在重写这样的方法调用:

when(listAdapter).setTabList(list);

但是你这样调用它:

tabFragment.setTabList();

我不明白这会如何运作。 setTabList(列表);和 setTabList();调用不同的方法。

关于java - 使用 PowerMock/Mockito 时模拟对象为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26497963/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com