public interface Expectation
extends org.hamcrest.SelfDescribing
Invocation| Modifier and Type | Method and Description |
|---|---|
boolean |
allowsMoreInvocations()
Can more
Invocations expected by this Expectation still occur? |
java.lang.Object |
invoke(Invocation invocation)
Invokes the expectation: records that the invocation has
occurred and fakes some behaviour in response.
|
boolean |
isSatisfied()
Have enough
Invocations expected by this Expectation occurred? |
boolean |
matches(Invocation invocation)
Can the Expectation be invoked with invocation?
|
boolean isSatisfied()
Invocations expected by this Expectation occurred?true if the expectation has received enough
of its expected invocations, false otherwise.boolean allowsMoreInvocations()
Invocations expected by this Expectation still occur?true if invocations expected by this expectation can still
occur, false otherwise.boolean matches(Invocation invocation)
invocation - true if the expectation can be invoked with
invocation, false otherwise.java.lang.Object invoke(Invocation invocation) throws java.lang.Throwable
invocation - The invocation to record and fake.java.lang.Throwable - An exception that is eventually thrown from the method call
that caused the invocation.java.lang.IllegalStateException - The expectation has been invoked with a method that it doesn't
match or the faked behaviour has been set up incorrectly.
For example, IllegalStateException is thrown when trying to return
a value or throw a checked exception that is incompatible with the
return type of the method being mocked