728x90
728x90
문제점
Junit5를 사용하여 테스트 코드를 작성하던 도중 assertThat과 equalTo를 사용하기 위해 선언을 했으나 아래와 같이 선언할 수 없다는 에러가 발생했다.
이는 적절한 import 문을 선언하지 않았기에 발생하는 에러이다.
그렇다면 어떻게 해야 이러한 에러를 해결할 수 있을까?
해결방안
아래와 같이 해당 import 문을 직접 작성해 주면 쉽게 해결이 된다.
import static org.hamcrest.CoreMatchers.equalTo
import static org.hamcrest.MatcherAssert.assertThat;
728x90
728x90
'Spring' 카테고리의 다른 글
[Spring Boot] Querydsl 초기 세팅 (Gradle, Querydsl 5.0.0) (6) | 2023.07.31 |
---|---|
[Spring Boot] Spring Data JPA에서 BaseEntity 사용하기 (10) | 2023.07.26 |
@RequestParam과 @Pathvariable의 차이점 (0) | 2023.05.08 |
[IntelliJ] 테스트 코드 단축키 설정 (0) | 2023.05.08 |
[Spring Boot] Spring Security without the WebSecurityConfigurerAdapter (0) | 2023.05.08 |