JAVA-11535 Move spring-data related modules to persistence-modules (#12126)

This commit is contained in:
anuragkumawat
2022-04-26 19:28:06 +05:30
committed by GitHub
parent 8735a58dd0
commit 4553469318
74 changed files with 6 additions and 9 deletions
@@ -0,0 +1,21 @@
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;
import com.baeldung.Application;
/**
* Note: In the IDE, remember to generate query type classes before running the Integration Test (e.g. in Eclipse right-click on the project > Run As > Maven generate sources)
*
*/
@RunWith(SpringRunner.class)
@SpringBootTest(classes = Application.class)
public class SpringContextTest {
@Test
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}