When I run Specs + Scalacheck tests with IDEA, I get nice pretty output:
Specification "CoreSpec"
The core grammar should
+ parse any encoded string
+ fail to parse an empty encoded string
+ parse an expected empty string
+ fail on a non-empty string when expecting an empty string
+ parse well-formed coordinates
In order to get my tests to run with maven, I have the usual:
class CoreSpecTest extends JUnit4(CoreSpec)
...but then the output is not very satisfying:
Running CoreSpecTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.782 sec
Results :
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0
Is there a way to get the pretty output in this case?
Thanks...