RabbitMQ Java, : rabbitmq-mock.
, . amqp-client ConnectionFactory RabbitMQ - ( ) .
pom.xml:
<dependency>
<groupId>com.github.fridujo</groupId>
<artifactId>rabbitmq-mock</artifactId>
<version>1.0.9</version>
<scope>test</scope>
</dependency>
, ConnectionFactory, Spring Spring-Boot :
@Configuration
@Import(AppConfiguration.class)
class TestConfiguration {
@Bean
ConnectionFactory connectionFactory() {
return new CachingConnectionFactory(new MockConnectionFactory());
}
}
, !