Files
spring-boot-rest/spring-boot-tomcat/src/test/java/com/baeldung/springbootsimple/SpringBootTomcatApplicationTests.java
Timoteo Ponce ee930d56c4 BAEL-1696 Initial setup in a workable state (#4173)
* BAEL-1696 Initial setup in a workable state

* Fixed method name on tomcatController
2018-05-14 02:10:20 -05:00

17 lines
356 B
Java

package com.baeldung.springbootsimple;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringBootTomcatApplicationTests {
@Test
public void contextLoads() {
}
}