We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6f7a6 commit a91acaaCopy full SHA for a91acaa
src/test/java/com/dhh/apiRestSpringboot3/ApiRestSpringboot3ApplicationTests.java
@@ -4,12 +4,14 @@
4
import org.junit.jupiter.api.Disabled;
5
import org.junit.jupiter.api.Test;
6
import org.springframework.boot.test.context.SpringBootTest;
7
+import org.springframework.test.context.ActiveProfiles;
8
9
@SpringBootTest
-class ApiRestSpringboot3ApplicationTests{
10
+@ActiveProfiles("test")
11
+class ApiRestSpringboot3ApplicationTests extends BaseIntegracionTest {
12
- @Test
- void contextLoads() {
13
- }
+ @Test
14
+ void contextLoads() {
15
+ }
16
17
}
0 commit comments