Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been trying to get to mock a method with vararg parameters using Mockito:

interface A {
  B b(int x, int y, C... c);
}

A a = mock(A.class);
B b = mock(B.class);

when(a.b(anyInt(), anyInt(), any(C[].class))).thenReturn(b);
assertEquals(b, a.b(1, 2));

This doesn't work, however if I do this instead:

when(a.b(anyInt(), anyInt())).thenReturn(b);
assertEquals(b, a.b(1, 2));

This works, despite that I have completely omitted the varargs argument when stubbing the method.

Any clues?

share|improve this question
the fact that last example works is rather trivial since it matches the case when zero varargs parameters passed. – topchef Apr 14 '10 at 2:42

2 Answers

up vote 29 down vote accepted

Mockito 1.8.1 introduced anyVararg() matcher:

when(a.b(anyInt(), anyInt(), anyVararg())).thenReturn(b);

Also see history for this: http://code.google.com/p/mockito/issues/detail?id=62

share|improve this answer
3  
anyVararg() has Object as its return type. To make it compatible with any var arg types (e.g. String ..., Integer ..., etc.), do an explicit casting. For example, if you have doSomething(Integer number, String ... args) you can do the mock/stub code with something like when(mock).doSomething(eq(1), (String) anyVarargs()). That should take care of the compilation error. – risc80x86 Dec 11 '12 at 7:55
2  
You can also do something like Matchers.<String>anyVarargs(). – Dave Feb 14 at 23:28

A somewhat undocumented feature: If you want to develop a custom Matcher that matches vararg arguments you need to have it implement org.mockito.internal.matchers.VarargMatcher for it to work correctly. It's an empty marker interface, without which Mockito will not correctly compare arguments when invoking a method with varargs using your Matcher.

For example:

class MyVarargMatcher extends ArgumentMatcher<C[]> implements VarargMatcher {
    @Override public boolean matches(Object varargArgument) {
        return /* does it match? */ true;
    }
}

when(a.b(anyInt(), anyInt(), argThat(new MyVarargMatcher()))).thenReturn(b);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.