我有一个要测试的公共 void 方法 "a",在 "a" 中我
有一个以字符串作为迭代器的循环,在这个循环中我调用了 B 的公共 void 方法,字符串迭代器作为我想模拟的参数,我想编写一个单元测试来使用 PowerMock 测试 "a",我怎样才能实现这一目标?
方法"a"中是否有任何静态方法引用,如果不直接使用 Mockito,PowerMock 基本上用于存根静态方法、模拟私有变量、构造函数等。我希望你不是在做集成测试,所以只是模拟B类的方法并使用Mockito.verify方法来检查你的方法是否真的被调用了。请参阅下面的答案。
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.junit.MockitoJUnitRunner;
@RunWith(MockitoJUnitRunner.class)
public class ClassATest {
@InjectMocks
ClassA classsA;
@Mock
ClassB classB;
@Test
public void testClassAMethod() {
//Assuming ClassA has one method which takes String array,
String[] inputStrings = {"A", "B", "C"};
//when you call classAMethod, it intern calls getClassMethod(String input)
classA.classAMethod(inputStrings);
//times(0) tells you method getClassBmethod(anyString()) been called zero times, in my example inputStrings length is three,
//it will be called thrice
//Mockito.verify(classB, times(0)).getClassBMethod(anyString());
Mockito.verify(classB, times(3)).getClassBMethod(anyString());
}
}