목차

Springframework Test

@ContextHierarchy

@ContextConfiguration 이중 지정문제

Test Class 자체에 컨텍스트 설정 넣기

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration // 이 부분 추가
public class MySpringTest {
    @Configuration
    public static class TestConfig {
        // 기타 설정..
    }
 
    @Autowired //.. injection...
}

@TestPropertySource

@IfProfileValue

WebClient / WebTestClient