BAEL-20552: Migrate spring-webflux-amqp module to the com.baeldung package
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.baeldung;
|
||||
|
||||
import com.baeldung.spring.amqp.SpringWebfluxAmqpApplication;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
|
||||
/**
|
||||
* This live test requires:
|
||||
* rabbitmq instance running on the environment
|
||||
*
|
||||
* <br>
|
||||
* To run rabbitmq using docker image:
|
||||
* (e.g. `docker run -d --name rabbitmq -p 5672:5672 rabbitmq:3`)
|
||||
*
|
||||
*/
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(classes = SpringWebfluxAmqpApplication.class)
|
||||
public class SpringContextLiveTest {
|
||||
|
||||
@Test
|
||||
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user