views:

1167

answers:

1

I have an interface with a method that expects an array of Foo:

public interface IBar {
  void DoStuff(Foo[] arr);
}

I am mocking this interface using Mockito, and I'd like to assert that DoStuff() is called, but I don't want to validate what argument are passed - "don't care".

How do I write the following code using any(), the generic method, instead of anyObject()?

IBar bar = mock(IBar.class);
...
verify(bar).DoStuff((Foo[])anyObject());
+11  A: 

This should work

verify(bar).DoStuff(any(Foo[].class));
jitter