Uses of Class
org.jmock.api.Invocation
-
Packages that use Invocation Package Description org.jmock.api The stable API that is used to extend jMock at its published plug-in points.org.jmock.internal This package contains internal implementation details.org.jmock.lib.action Actions that fake the behaviour of mocked invocations.org.jmock.lib.script Plugins that make it easier to write custom actions by scripting their behaviour with BeanShell. -
-
Uses of Invocation in org.jmock.api
Fields in org.jmock.api declared as Invocation Modifier and Type Field Description Invocation
ExpectationError. invocation
Methods in org.jmock.api with parameters of type Invocation Modifier and Type Method Description void
Expectation. describeMismatch(Invocation invocation, org.hamcrest.Description description)
boolean
Invocation. equals(Invocation other)
Object
Expectation. invoke(Invocation invocation)
Invokes the expectation: records that the invocation has occurred and fakes some behaviour in response.Object
Invokable. invoke(Invocation invocation)
Performs an action in response to an invocation.boolean
Expectation. matches(Invocation invocation)
Can the Expectation be invoked with invocation?static ExpectationError
ExpectationError. unexpected(String message, Invocation invocation)
Constructors in org.jmock.api with parameters of type Invocation Constructor Description ExpectationError(String message, org.hamcrest.SelfDescribing expectations, Invocation invocation)
-
Uses of Invocation in org.jmock.internal
Methods in org.jmock.internal with parameters of type Invocation Modifier and Type Method Description void
ExpectationCapture. createExpectationFrom(Invocation invocation)
void
InvocationExpectationBuilder. createExpectationFrom(Invocation invocation)
void
InvocationDispatcher. describeMismatch(Invocation invocation, org.hamcrest.Description description)
void
InvocationExpectation. describeMismatch(Invocation invocation, org.hamcrest.Description description)
Object
InvocationDispatcher. dispatch(Invocation invocation)
Object
FakeObjectMethods. invoke(Invocation invocation)
Object
InvocationDiverter. invoke(Invocation invocation)
Object
InvocationExpectation. invoke(Invocation invocation)
Object
InvocationToExpectationTranslator. invoke(Invocation invocation)
Object
ReturnDefaultValueAction. invoke(Invocation invocation)
boolean
InvocationExpectation. matches(Invocation invocation)
-
Uses of Invocation in org.jmock.lib.action
Methods in org.jmock.lib.action with parameters of type Invocation Modifier and Type Method Description Object
ActionSequence. invoke(Invocation invocation)
Object
DoAllAction. invoke(Invocation invocation)
Enumeration<?>
ReturnEnumerationAction. invoke(Invocation invocation)
Iterator<?>
ReturnIteratorAction. invoke(Invocation invocation)
Object
ReturnValueAction. invoke(Invocation invocation)
Object
ThrowAction. invoke(Invocation invocation)
Object
VoidAction. invoke(Invocation invocation)
-
Uses of Invocation in org.jmock.lib.script
Methods in org.jmock.lib.script with parameters of type Invocation Modifier and Type Method Description Object
ScriptedAction. invoke(Invocation invocation)
-