This is a Maven feature. Per default, Maven writes test results to a
file, but not to the console. To change that, add the following to
your POM:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useFile>false</useFile>
</configuration>
</plugin>
Now you should see immediately what went wrong.
Cheers,
Peter