|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Calls>
org.unitils.easymock.util.Calls
public enum Calls
Possible values for allowing unexpected (non-recorded) method calls on mock objects. When set to lenient, a 'Nice mock' is created, as called in the EasyMock terminology. For non-void methods this means that a Java default (null, 0 or false) is returned.
Enum Constant Summary | |
---|---|
DEFAULT
Defaults to the value of the org.unitils.easymock.annotation.LenientMock$Calls configuration setting. |
|
LENIENT
Accept unexpected method calls. |
|
STRICT
Throw an exception when unexpected method calls occur |
Method Summary | |
---|---|
static Calls |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Calls[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Calls DEFAULT
public static final Calls LENIENT
public static final Calls STRICT
Method Detail |
---|
public static Calls[] values()
for (Calls c : Calls.values()) System.out.println(c);
public static Calls valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |