I am trying to pass wildcard to the mockito any () method. This is the method
selectGatewayInfoConfig(Operation<?> o)
I am trying to do the following:
when(gatewayConfigSelector.selectGatewayInfoConfig( any(**!!!!!! HERE I NEED THIS WILDCARD !!!!**)); .thenReturn(...something...);
Thanks in advance.
source share