BAEL-10925 New module spring-boot-rest

This commit is contained in:
Dhawal Kapil
2019-01-09 00:30:54 +05:30
parent 731a3cd229
commit c0e36d5b10
6 changed files with 85 additions and 1 deletions
@@ -0,0 +1,16 @@
package com.baeldung.spring.boot.rest;
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 SpringBootRestApplicationUnitTest {
@Test
public void contextLoads() {
}
}