rename project, format

This commit is contained in:
Loredana Crusoveanu
2021-06-08 12:16:37 +03:00
parent e992e67e34
commit 0ad2b4d2f0
14 changed files with 111 additions and 105 deletions

View File

@@ -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() {
}
}