15 lines
429 B
Java
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
|
|
}
|
|
}
|