기본 템플릿은 아래와 유사한 테스트를 만들어준다.
public class ApplicationFunctionalTest {
@Autowired
private ApplicationContext applicationContext;
@Test
public void contextLoads() {
}
}
문제는 sonarqube에서 단정문이 없다고 아래와 같이 경고한다.
간단한 해결책..
애플리케이션 컨텍스트가 널이 아님을 단정한다.
public class ApplicationFunctionalTest {
@Autowired
private ApplicationContext applicationContext;
@Test
public void contextLoads() {
assertNotNull(applicationContext);
}
}
'Programing > Framework' 카테고리의 다른 글
[Spring] Boot 빈 의존성 사례 - Spring Integration (TCP) (0) | 2020.01.30 |
---|---|
[Spring] ClientHttpResponse 인터페이스 계층 구조 (0) | 2020.01.08 |
[Spring] Bean 생성시 필드주입 시점은? (0) | 2019.10.17 |
[spring] stream 사용 예, 하지만 없어졌지... (0) | 2019.10.14 |
[Spring] 스프링 프레임워크 개요 (0) | 2019.09.08 |