Uses of Interface
ratpack.test.ApplicationUnderTest
-
Packages that use ApplicationUnderTest Package Description ratpack.groovy.test ratpack.groovy.test.embed Support for creating Groovy based embedded applications.ratpack.test Fixtures used for testing Ratpack applications (seeApplicationUnderTest
).ratpack.test.embed Support for creating embedded applications at test time, for testing Ratpack features and extensions.ratpack.test.http Test fixtures that provide HTTP client interfaces to applications under test.ratpack.test.mock Support for creating mocks for remote APIs. -
-
Uses of ApplicationUnderTest in ratpack.groovy.test
Classes in ratpack.groovy.test that implement ApplicationUnderTest Modifier and Type Class Description class
GroovyRatpackMainApplicationUnderTest
-
Uses of ApplicationUnderTest in ratpack.groovy.test.embed
Subinterfaces of ApplicationUnderTest in ratpack.groovy.test.embed Modifier and Type Interface Description interface
GroovyEmbeddedApp
A more Groovy version ofEmbeddedApp
. -
Uses of ApplicationUnderTest in ratpack.test
Subinterfaces of ApplicationUnderTest in ratpack.test Modifier and Type Interface Description interface
CloseableApplicationUnderTest
AnApplicationUnderTest
that is able to be shut down.Classes in ratpack.test that implement ApplicationUnderTest Modifier and Type Class Description class
MainClassApplicationUnderTest
An application under test fixture that can be used to test a server started by a “main” method.class
ServerBackedApplicationUnderTest
AnApplicationUnderTest
implementation that manages aRatpackServer
. -
Uses of ApplicationUnderTest in ratpack.test.embed
Subinterfaces of ApplicationUnderTest in ratpack.test.embed Modifier and Type Interface Description interface
EmbeddedApp
An application created and used at runtime, useful for functionally testing subsets of functionality. -
Uses of ApplicationUnderTest in ratpack.test.http
Methods in ratpack.test.http that return ApplicationUnderTest Modifier and Type Method Description ApplicationUnderTest
TestHttpClient. getApplicationUnderTest()
Retrieves the application under test that is bound to this client.Methods in ratpack.test.http with parameters of type ApplicationUnderTest Modifier and Type Method Description static TestHttpClient
TestHttpClient. testHttpClient(ApplicationUnderTest applicationUnderTest)
A method to create an instance of the default implementation of TestHttpClient.static TestHttpClient
TestHttpClient. testHttpClient(ApplicationUnderTest applicationUnderTest, Action<? super RequestSpec> requestConfigurer)
A method to create an instance of the default implementation of TestHttpClient. -
Uses of ApplicationUnderTest in ratpack.test.mock
Classes in ratpack.test.mock that implement ApplicationUnderTest Modifier and Type Class Description class
MockApi
A test harness for simulating behavior of remote APIs by starting anEmbeddedApp
that will handle requests based on the content of the received request.
-