Uses of Interface
ratpack.test.handling.HandlingResult
-
Packages that use HandlingResult Package Description ratpack.groovy.test.handling ratpack.test.handling Test fixtures for exercisingHandler
implementations without start a fullEmbeddedApp
. -
-
Uses of HandlingResult in ratpack.groovy.test.handling
Methods in ratpack.groovy.test.handling that return HandlingResult Modifier and Type Method Description static HandlingResult
GroovyRequestFixture. handle(Handler handler, Closure<?> closure)
Unit test aHandler
.static HandlingResult
GroovyRequestFixture. handle(Action<? super Chain> handlers, Closure<?> closure)
Unit test a chain ofhandlers
. -
Uses of HandlingResult in ratpack.test.handling
Methods in ratpack.test.handling that return HandlingResult Modifier and Type Method Description HandlingResult
RequestFixture. handle(Handler handler)
Invokes the given handler with a newly createdContext
based on the state of this fixture.static HandlingResult
RequestFixture. handle(Handler handler, Action<? super RequestFixture> action)
Unit test a singleHandler
.static HandlingResult
RequestFixture. handle(Action<? super Chain> chainAction, Action<? super RequestFixture> requestFixtureAction)
Unit test aHandler
chain.HandlingResult
RequestFixture. handleChain(Action<? super Chain> chainAction)
Similar toRequestFixture.handle(Handler)
, but for testing a handler chain.Constructors in ratpack.test.handling with parameters of type HandlingResult Constructor Description HandlerTimeoutException(HandlingResult handlingResult, int timeoutSecs)
Constructor.
-