콘솔에서 단위 테스트의 스택 추적을보고 싶습니다. surefire가 이것을 지원합니까?
답변:
내가 찾은 관련 문제는 최근 버전에서 surefire가 기본적으로 trimStackTrace를 true로 설정한다는 것입니다 (실패한 테스트에서 대부분의 스택 추적을 쓸모 없게 렌더링). 이는 매우 불편합니다.
설정 -DtrimStackTrace=false
또는 정의
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<trimStackTrace>false</trimStackTrace>
</configuration>
</plugin>
이 문제를 해결했습니다.