Spring 전환 최소 실행 골격 재검증 (role-developer-reverify-001)
Some checks failed
ci / test (pull_request) Failing after 1m16s
Some checks failed
ci / test (pull_request) Failing after 1m16s
This commit is contained in:
parent
2642235adf
commit
b8c0e7e9f7
1 changed files with 15 additions and 0 deletions
15
src/test/java/com/example/SpringMinimalApplicationTests.java
Normal file
15
src/test/java/com/example/SpringMinimalApplicationTests.java
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
package com.example;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
import org.springframework.test.context.TestPropertySource;
|
||||||
|
|
||||||
|
@SpringBootTest
|
||||||
|
@TestPropertySource(properties = {"spring.main.allow-bean-definition-overriding=true"})
|
||||||
|
class SpringMinimalApplicationTests {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void contextLoads() {
|
||||||
|
// Verifies that the Spring context loads successfully
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue