From feddb2e8a1bc2b0c30fa8712cb590596a48b6abe Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 25 Nov 2014 10:51:27 +0000 Subject: [PATCH] Note that @IntegrationTest and @WebAppConfiguration can be used with Spock Closes gh-1908 --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index bab481036b..68b7f5aa14 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -2073,6 +2073,10 @@ Boot specific context loader: } ---- +NOTE: The annotations <> +can be used with Spock, i.e. you can annotate your `Specification` with +`@IntegrationTest` and `@WebAppConfiguration` to suit the needs of your tests. + [[boot-features-test-utilities]]