runtime-role-reverify-20260.../src/test/java/com/example/SpringMinimalApplicationTests.java
2026-07-14 05:23:02 +00:00

15 lines
429 B
Java

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
}
}