Annotation Interface AutoConfigureWebTestClient
@Target({TYPE,METHOD})
@Retention(RUNTIME)
@Documented
@Inherited
@ImportAutoConfiguration
@PropertyMapping("spring.test.webtestclient")
public @interface AutoConfigureWebTestClient
Annotation that can be applied to a test class to enable a
WebTestClient
that
is bound directly to the application. Tests do not rely upon an HTTP server and use
mock requests and responses. At the moment, only WebFlux applications are supported.- Since:
- 2.0.0
- Author:
- Stephane Nicoll
- See Also:
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionThe timeout duration for the client (in any format handled byDuration.parse(CharSequence)
).
-
Element Details
-
timeout
String timeoutThe timeout duration for the client (in any format handled byDuration.parse(CharSequence)
).- Returns:
- the web client timeout
- Default:
- ""
-