I\'m verifying with mockito that a method has been called. The method:
public void createButtons(final List buttonsConfiguration) {...}
Hamcrest provides a simpler way.
verify(mock).addAll(argThat(IsCollectionWithSize.hasSize(4)));