我正在尝试使用mockito来验证方法是否被调用。这是一个例子:
@Test
public void t(){
InvokedFromTest ift = mock(InvokedFromTest.class);
TestClass t = new TestClass();
t.ift = ift;
t.mm(new String(ByteBuffer.allocate(4).put("123".getBytes()).array()));
verify(ift, times(1)).m("123");
}
private static class TestClass{
public InvokedFromTest ift;
public void mm(String s){ ift.m(s); }
}
private static class InvokedFromTest{
public void m(String s){}
}
但是当runnig t()
我得到以下异常时:
Argument(s) are different! Wanted:
invokedFromTest.m("123");
-> at com.pack.age.TableRowIgniteProcessingLogicTest.t(TableRowIgniteProcessingLogicTest.java:62)
Actual invocation has different arguments:
invokedFromTest.m("123");
-> at com.pack.age.TableRowIgniteProcessingLogicTest$TestClass.mm(TableRowIgniteProcessingLogicTest.java:67)
为什么呢?为什么我会收到此错误?如何使测试按预期工作?
答案 0 :(得分:1)
您正在分配长度为4的字节缓冲区,而只存储3个数字(每个长度为1个字节)。将此字节数组传递给String的构造函数,创建一个4个字符的字符串,其中最后一个字符是\ u0000(byte = 0)。
使用ByteBuffer.allocate(3)
。