Id like to see stacktrace of unit tests in console, does surefire support this?

link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

You can use the following command to see the stack trace on console instead of report files in the target/surefire-reports folder:

mvn -Dsurefire.useFile=false test
link|improve this answer
This only have logger output into console, but stacktraces still goes to surefire-reports – Sloin May 24 '11 at 23:01
yegor256's solution works though – Sloin May 24 '11 at 23:09
feedback

To extend the answer given before, you also can configure this behavior in your pom.xml:

..
<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-surefire-plugin</artifactId>
  <version>2.5</version>
  <configuration>
    <useFile>false</useFile>
  </configuration>
</plugin>
..
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.