I am using Mockito for unit testing. And there are many matchers like anyString()
, anyBoolean()
in Mockito. But suppose if I have a custom enum
like
Enum LoginType.java
//LoginType.java
public enum LoginType {
FACEBOOK,
EMAIL,
GOOGLE
}
In one of the method arguments I need to pass an instance of LoginType
. How do I pass the argument without explicitly passing LoginType.FACEBOOK
or LoginType.GOOGLE
. Something like anyString()
. Any hint in that direction will be useful.