MockFactory
public abstract class Specification extends MockingApi
Modifier and Type | Field | Description |
---|---|---|
static java.lang.Object |
_ |
The wildcard symbol.
|
Constructor | Description |
---|---|
Specification() |
Modifier and Type | Method | Description |
---|---|---|
void |
noExceptionThrown() |
Specifies that no exception should be thrown, failing with a
UnallowedExceptionThrownError otherwise. |
void |
notThrown(java.lang.Class<? extends java.lang.Throwable> type) |
Specifies that no exception of the given type should be
thrown, failing with a
UnallowedExceptionThrownError otherwise. |
<T> T |
old(T expression) |
Used in a then-block to access an expression's value at the time just
before the previous where-block was entered.
|
<T extends java.lang.Throwable> |
thrown() |
Specifies that the preceding when block should throw an exception.
|
<T extends java.lang.Throwable> |
thrown(java.lang.Class<T> type) |
Specifies that the preceding when block should throw an exception
of the given type.
|
void |
verifyAll(Closure closure) |
All assertions in this block are executed and the errors recorded and reported at the end.
|
<U> void |
verifyAll(java.lang.Object target,
java.lang.Class<U> type,
Closure closure) |
A combination of
with(Object, Class, Closure) and verifyAll(Closure) . |
<U> void |
verifyAll(U target,
Closure<?> closure) |
A combination of
with(Object, Closure) and verifyAll(Closure) . |
<U> void |
with(java.lang.Object target,
java.lang.Class<U> type,
Closure closure) |
Same as
with(Object, groovy.lang.Closure) , except that it also states that
the specified target has the specified type, throwing a SpockAssertionError
otherwise. |
<U> void |
with(U target,
Closure<?> closure) |
Sets the specified object as the implicit target of the top-level conditions and/or
interactions contained in the specified code block, thereby avoiding the need to repeat
the same expression multiple times.
|
GroovyMock, GroovyMock, GroovyMock, GroovyMock, GroovyMock, GroovyMock, GroovyMock, GroovyMock, GroovySpy, GroovySpy, GroovySpy, GroovySpy, GroovySpy, GroovySpy, GroovySpy, GroovySpy, GroovyStub, GroovyStub, GroovyStub, GroovyStub, GroovyStub, GroovyStub, GroovyStub, GroovyStub, interaction, Mock, Mock, Mock, Mock, Mock, Mock, Mock, Mock, Spy, Spy, Spy, Spy, Spy, Spy, Spy, Spy, Spy, Stub, Stub, Stub, Stub, Stub, Stub, Stub, Stub
public static final java.lang.Object _
public <T extends java.lang.Throwable> T thrown()
This form of exception condition is typically used if the thrown exception instance is used in subsequent conditions.
Example:
when: "".charAt(0) then: IndexOutOfBoundsException e = thrown() e.message.contains(...)
public <T extends java.lang.Throwable> T thrown(java.lang.Class<T> type)
This form of exception condition is typically used if the thrown exception instance is not used in subsequent conditions.
Example:
when: "".charAt(0) then: thrown(IndexOutOfBoundsException)
T
- the expected exception typetype
- the expected exception typepublic void notThrown(java.lang.Class<? extends java.lang.Throwable> type)
UnallowedExceptionThrownError
otherwise.type
- the exception type that should not be thrownpublic void noExceptionThrown()
UnallowedExceptionThrownError
otherwise.public <T> T old(T expression)
T
- the expression's typeexpression
- an arbitrary expression, except that it may not
reference variables defined in the then-block@Beta public <U> void with(U target, @DelegatesTo(strategy=1) Closure<?> closure)
assert
keyword may be omitted.) If the target is null
, a
SpockAssertionError
is thrown.
A with
block can be used anywhere in a spec, including nested positions
and helper methods.
Condition example:
def fred = new Person(name: "Fred", age: 42) def spaceship = new Spaceship(pilot: fred) expect: with(spaceship.pilot) { name == "Fred" // shorthand for: spaceship.pilot.name == "Fred" age == 42 }
Interaction example:
def service = Mock(Service) // has start(), stop(), and doWork() methods def app = new Application(service) // controls the lifecycle of the service when: app.run() then: with(service) { 1 * start() // shorthand for: 1 * service.start() 1 * doWork() 1 * stop() }
U
- type of targettarget
- an implicit target for conditions and/or interactionsclosure
- a code block containing top-level conditions and/or interactions@Beta public <U> void with(java.lang.Object target, java.lang.Class<U> type, @DelegatesTo(genericTypeIndex=0,strategy=1) Closure closure)
with(Object, groovy.lang.Closure)
, except that it also states that
the specified target has the specified type, throwing a SpockAssertionError
otherwise. As a side effect, this may give better code completion in IDEs.
Example:
def fred = new Employee(name: "Fred", age: 42, employer: "MarsTravelUnited") def spaceship = new Spaceship(pilot: fred) expect: with(spaceship.pilot, Employee) { name == "Fred" // shorthand for: spaceship.pilot.name == "Fred" age == 42 employer == "MarsTravelUnited" }
U
- type of targettarget
- an implicit target for conditions and/or interactionstype
- the expected type of the targetclosure
- a code block containing top-level conditions and/or interactions@Beta public void verifyAll(Closure closure)
Example:
expect: verifyAll { 1 == 2 2 == 3 }This will report two errors, instead of just the first.
closure
- a code block containing top-level conditions and/or interactions@Beta public <U> void verifyAll(U target, @DelegatesTo(strategy=1) Closure<?> closure)
with(Object, Closure)
and verifyAll(Closure)
.U
- type of targettarget
- an implicit target for conditions and/or interactionsclosure
- a code block containing top-level conditions and/or interactions@Beta public <U> void verifyAll(java.lang.Object target, java.lang.Class<U> type, @DelegatesTo(genericTypeIndex=0,strategy=1) Closure closure)
with(Object, Class, Closure)
and verifyAll(Closure)
.U
- type of targettarget
- an implicit target for conditions and/or interactionstype
- the expected type of the targetclosure
- a code block containing top-level conditions and/or interactions