With Mockito, I want to verify() a method call with byte[] in its argument list, but I didn\'t find how to write this.
verify()
byte[]
myMethod( byte[
I would rather use Matchers.any(). This worked for me.
Matchers.any()