* Renamed IntegrationTests that needed manual configurations to run succesfully as ManualTests
* Renamed Integrationtests that needed the project (or related project, in case of client-server) as LiveTests * Fixed migration of mustache module to make it compatible with spring-boot 2.1
This commit is contained in:
parent
6de56600db
commit
40e26514f4
|
@ -30,6 +30,11 @@
|
||||||
<artifactId>log4j</artifactId>
|
<artifactId>log4j</artifactId>
|
||||||
<version>${log4j.version}</version>
|
<version>${log4j.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
spring.mustache.suffix:.html
|
|
@ -9,7 +9,7 @@ import com.baeldung.springamqpsimple.SpringAmqpApplication;
|
||||||
|
|
||||||
@RunWith(SpringRunner.class)
|
@RunWith(SpringRunner.class)
|
||||||
@SpringBootTest(classes = SpringAmqpApplication.class)
|
@SpringBootTest(classes = SpringAmqpApplication.class)
|
||||||
public class SpringContextIntegrationTest {
|
public class SpringContextManualTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
@ -9,7 +9,7 @@ import com.baeldung.spring.kafka.KafkaApplication;
|
||||||
|
|
||||||
@RunWith(SpringRunner.class)
|
@RunWith(SpringRunner.class)
|
||||||
@SpringBootTest(classes = KafkaApplication.class)
|
@SpringBootTest(classes = KafkaApplication.class)
|
||||||
public class SpringContextIntegrationTest {
|
public class SpringContextManualTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
@ -9,7 +9,7 @@ import com.baeldung.server.AmqpServer;
|
||||||
|
|
||||||
@RunWith(SpringRunner.class)
|
@RunWith(SpringRunner.class)
|
||||||
@SpringBootTest(classes = AmqpServer.class)
|
@SpringBootTest(classes = AmqpServer.class)
|
||||||
public class SpringContextIntegrationTest {
|
public class SpringContextManualTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
@ -9,7 +9,7 @@ import com.baeldung.server.JmsServer;
|
||||||
|
|
||||||
@SpringBootTest(classes = JmsServer.class)
|
@SpringBootTest(classes = JmsServer.class)
|
||||||
@RunWith(SpringRunner.class)
|
@RunWith(SpringRunner.class)
|
||||||
public class SpringContextIntegrationTest {
|
public class SpringContextManualTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
@ -9,7 +9,7 @@ import com.baeldung.client.RmiClient;
|
||||||
|
|
||||||
@SpringBootTest(classes = RmiClient.class)
|
@SpringBootTest(classes = RmiClient.class)
|
||||||
@RunWith(SpringRunner.class)
|
@RunWith(SpringRunner.class)
|
||||||
public class SpringContextIntegrationTest {
|
public class SpringContextLiveTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
Loading…
Reference in New Issue