BAEL-19928: Move code to com.baeldung.reactorbus package

This commit is contained in:
Krzysiek
2020-01-08 20:41:16 +01:00
parent dee493a6eb
commit 5ecd92fd83
9 changed files with 17 additions and 17 deletions
@@ -0,0 +1,17 @@
package com.baeldung;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import com.baeldung.reactorbus.NotificationApplication;
@RunWith(SpringRunner.class)
@SpringBootTest(classes = NotificationApplication.class)
public class SpringContextTest {
@Test
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}
@@ -1,4 +1,4 @@
package com.baeldung;
package com.baeldung.reactorbus;
import org.junit.Test;
import org.junit.runner.RunWith;