Wednesday, April 25, 2012

Using Mockito"s generic "any()” method


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());


Source: Tips4all

1 comment:

  1. This should work

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

    ReplyDelete