From cc9dd438463acb0660f3d4879b5d48c36b4001e2 Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Thu, 4 May 2023 10:39:48 +0200 Subject: [PATCH] Update getting-started.adoc removed `inputMessage` mention --- docs/src/main/asciidoc/getting-started.adoc | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/docs/src/main/asciidoc/getting-started.adoc b/docs/src/main/asciidoc/getting-started.adoc index 4782bd6c8e..950bfedabf 100644 --- a/docs/src/main/asciidoc/getting-started.adoc +++ b/docs/src/main/asciidoc/getting-started.adoc @@ -469,7 +469,6 @@ In the next listing, you can find: - A JAX-RS client with the `JAXRS` test mode - A `WebTestClient`-based test (this is particularly recommended while working with Reactive, `Web-Flux`-based applications) set with the `WEBTESTCLIENT` test mode -- A Spock-based test with the `testFramework` property set to `SPOCK` NOTE: You need only one of these test frameworks. MockMvc is the default. To use one of the other frameworks, add its library to your classpath. @@ -560,23 +559,6 @@ public class FooTest { assertThatJson(parsedJson).field("['status']").isEqualTo("NOT_OK"); } ---- - -[source,groovy,indent=0,role="secondary"] -.spock ----- -given: - ContractVerifierMessage inputMessage = contractVerifierMessaging.create( - \'\'\'{"bookName":"foo"}\'\'\', - ['sample': 'header'] - ) - -when: - contractVerifierMessaging.send(inputMessage, 'jms:delete') - -then: - noExceptionThrown() - bookWasDeleted() ----- ==== As the implementation of the functionalities described by the contracts is not yet