jmock - mocking a method with long[] as input and with(any())
I have a q开发者_运维知识库uestion related to jmock library. I am trying to mock a method that has a parameter of long[]
and with(any())
. Is there a direct way to do that?
public class A
{
public void Method_A(long[] a)
{
//Do Somthing. need to mocking
}
}
Yes. Just use any(long[].class)
.
精彩评论