BAEL-1627 Moved the code to new module spring-boot-mvc

This commit is contained in:
Dhrubajyoti Bhattacharjee
2018-05-16 08:59:40 +05:30
parent 8087dad2b2
commit 6d1049ac2c
12 changed files with 109 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
package com.baeldung.springbootmvc;
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 SpringBootMvcApplicationTests {
@Test
public void contextLoads() {
}
}