JAVA-117 Standardize spring-boot-modules/spring-boot-gradle

This commit is contained in:
mikr
2020-04-04 21:16:51 +02:00
parent 2d0f2c171b
commit 641956f87d
3 changed files with 6 additions and 6 deletions
@@ -0,0 +1,16 @@
package com.baeldung;
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 DemoApplicationTests {
@Test
public void contextLoads() {
}
}