Consolidate messaging interface names (StubMessages)

This commit is contained in:
Dave Syer
2016-07-19 11:09:01 +01:00
parent df5902fabd
commit ca95b7f53b
32 changed files with 103 additions and 107 deletions

View File

@@ -39,17 +39,17 @@ You have to provide as a dependency the messaging module that matches your provi
testCompile "org.springframework.cloud:spring-cloud-contract-verifier-integration"
----
and then add `@AutoConfigureContractVerifierMessaging` to your test, e.g.
and then add `@AutoConfigureStubMessages` to your test, e.g.
[source,java,indent=0]
----
@RunWith(SpringTestRunner.class)
@SpringBootTest
@AutoConfigureContractVerifierMessaging
@AutoConfigureStubMessages
public static class MessagingContractTests {
@Autowired
private ContractVerifierMessageExchange exchange;
private StubMessages exchange;
...
}
----