java-tutorials/spring-mvc-simple-2/src/test/java/com/baeldung/AppContextIntegrationTest.java
Amy DeGregorio af4edd08fd BAEL-2801 (#6665)
* BAEL-2727 Example Code

* BAEL-2801 Example code

* Change to use parent-boot-2
2019-04-05 08:04:56 -07:00

14 lines
298 B
Java

package com.baeldung;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import com.baeldung.spring.Application;
@SpringBootTest(classes = Application.class)
public class AppContextIntegrationTest {
@Test
public void contextLoads() {
}
}