rename project, format

This commit is contained in:
Loredana Crusoveanu
2021-06-08 12:16:37 +03:00
parent 3cabed6990
commit f777c86fcf
14 changed files with 111 additions and 105 deletions
@@ -0,0 +1,14 @@
package com.baeldung;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import com.baeldung.spring.servicevalidation.SpringServiceLayerValidationApp;
@SpringBootTest(classes = SpringServiceLayerValidationApp.class)
public class SpringContextTest {
@Test
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}