Id like to see stacktrace of unit tests in console, does surefire support this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use the following command to see the stack trace on console instead of report files in the target/surefire-reports folder:
|
|||
|
To extend the answer given before, you also can configure this behavior in your
|
|||
|
|
|
A related problem that I found is that surefire in recent versions apparently sets trimStackTrace to true by default (rendering most stack trace in failed tests useless), which is quite inconvenient. Setting -DtrimStackTrace=false or defining
solved this. |
|||
|
|