<dependency>
+ <groupId>org.springframework.cloud</groupId>
+ <artifactId>spring-cloud-stream-test-support</artifactId>
+ <scope>test</scope>
+</dependency>
+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.
+ |
+
<dependency>
+ <groupId>org.springframework.cloud</groupId>
+ <artifactId>spring-cloud-stream-test-support</artifactId>
+ <scope>test</scope>
+</dependency>
+testCompile "org.springframework.cloud:spring-cloud-stream-test-support"
+|
+ 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:
+|
+ Important
+ |
+
+If you want to use Spring Cloud Stream remember to add a
+org.springframework.cloud:spring-cloud-stream-test-support dependency.
+ |
+
<dependency>
+ <groupId>org.springframework.cloud</groupId>
+ <artifactId>spring-cloud-stream-test-support</artifactId>
+ <scope>test</scope>
+</dependency>
+testCompile "org.springframework.cloud:spring-cloud-stream-test-support"
+