Reputation: 344
verify(email.create(xx.E));
Below is the Enum
public enum xx {
A,B,C,D,E
}
Let me know if there is a way verify if create Method is called with enum as a parameter
Upvotes: 2
Views: 1828
Reputation: 247018
Move the method out
//verify method invocation.
verify(email).create(xx.E);
Reference Let's verify some behaviour!
Upvotes: 4