diff --git a/spring-cloud-contract.html b/spring-cloud-contract.html index 6986fff4e2..a38110fb4f 100644 --- a/spring-cloud-contract.html +++ b/spring-cloud-contract.html @@ -3684,6 +3684,35 @@ generated tests. Otherwise messaging part of Spring Cloud Contract Verifier will +
+ + + + + +
+
Important
+
+If you want to use Spring Cloud Stream remember to add a +org.springframework.cloud:spring-cloud-stream-test-support dependency. +
+
+
+
Maven
+
+
<dependency>
+    <groupId>org.springframework.cloud</groupId>
+    <artifactId>spring-cloud-stream-test-support</artifactId>
+    <scope>test</scope>
+</dependency>
+
+
+
+
Gradle
+
+
testCompile "org.springframework.cloud:spring-cloud-stream-test-support"
+
+

Manual Integration Testing

@@ -3747,6 +3776,23 @@ inside the application (e.g. scheduler)

+
+ + + + + +
+
Important
+
+The destination passed to messageFrom or sentTo can have different meanings for different + messaging implementations. For Stream and Integration it’s first resolved as a destination of a channel, and then if + there is no such destination it’s resolved as a channel name. For Camel that’s a certain component (e.x. jms). +
+
+
+

Example for Camel:

+
Scenario 1 (no input message)
@@ -5963,6 +6009,35 @@ channel name.
+
+ + + + + +
+
Important
+
+If you want to use Spring Cloud Stream remember to add a +org.springframework.cloud:spring-cloud-stream-test-support dependency. +
+
+
+
Maven
+
+
<dependency>
+    <groupId>org.springframework.cloud</groupId>
+    <artifactId>spring-cloud-stream-test-support</artifactId>
+    <scope>test</scope>
+</dependency>
+
+
+
+
Gradle
+
+
testCompile "org.springframework.cloud:spring-cloud-stream-test-support"
+
+

Adding it to the project