Developer 역할 Spring 골격 smoke #4

Open
forge-bot wants to merge 9 commits from forge/role-developer-live-v3-001-attempt-1-run-2d01a4fe6309 into main
Showing only changes of commit 061ee7ab69 - Show all commits

View file

@ -0,0 +1,14 @@
package com.example.demo;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.TestPropertySource;
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@TestPropertySource(properties = {"spring.main.allow-bean-definition-overriding=true"})
class DeveloperApplicationTests {
@Test
void contextLoads() {
}
}