Spring 전환 골격 최신 reviewer 검증 #1
1 changed files with 20 additions and 0 deletions
|
|
@ -0,0 +1,20 @@
|
|||
package com.example;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.context.TestPropertySource;
|
||||
|
||||
/**
|
||||
* Integration test to verify Spring Boot context loads successfully.
|
||||
*/
|
||||
@SpringBootTest
|
||||
@TestPropertySource(properties = {
|
||||
"spring.main.allow-bean-definition-overriding=true"
|
||||
})
|
||||
class SpringBootMinimalApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
// Verifies that the Spring application context loads without errors
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue