A B C D E F G I L M N P R S T U

A

addBehavior(String, Behavior) - Method in interface biz.xsoftware.mock.MockObject
Adds a snippet of code to be run which exists in the Behavior implementation.
addBehavior(String, Behavior, Class<?>...) - Method in interface biz.xsoftware.mock.MockObject
Deprecated. Since 2007 Aug 8. Use MockObject.addBehavior(MethodSignature, Behavior) instead
addBehavior(MethodSignature, Behavior) - Method in interface biz.xsoftware.mock.MockObject
Adds a snippet of code to be run which exists in the Behavior implementation.
addIgnore(String...) - Method in interface biz.xsoftware.mock.MockObject
When calling expect, the MockObject will ignore the methods in 'methods' variable so if one of the methods in this array is called, it will not result in an exception
addIgnore(MethodSignature...) - Method in interface biz.xsoftware.mock.MockObject
When calling expect, the MockObject will ignore the methods in 'methods' variable so if one of the methods in this array is called, it will not result in an exception.
addReturnValue(String, T...) - Method in interface biz.xsoftware.mock.MockObject
Add a return value to return when 'method' is called.
addReturnValue(MethodSignature, T...) - Method in interface biz.xsoftware.mock.MockObject
Add a return value to return when 'method' is called.
addReturnValue(Method, T...) - Method in interface biz.xsoftware.mock.MockObject
Add a return value to return when 'method' is called.
addReturnValue(String, boolean, Object...) - Method in interface biz.xsoftware.mock.MockObject
Deprecated. MockObject.addReturnValue(Method, Object...) was enhanced to detect if the given method returns an array. If it does then the object array passed in will be the object returned for a single method call
addThrowException(String, Throwable) - Method in interface biz.xsoftware.mock.MockObject
Add an exception to throw when a method on the mockObject is called.
addThrowException(MethodSignature, Throwable) - Method in interface biz.xsoftware.mock.MockObject
Add an exception to throw when a method on the mockObject is called.
ANY - Static variable in interface biz.xsoftware.mock.MockObject
Field used to expect any method so expect returns as soon as any method is called.
ANY_CLASS_TYPE - Static variable in class biz.xsoftware.mock.MethodSignature
 

A B C D E F G I L M N P R S T U