Generating FlexUnit Test Reports with Flex Mojos
Posted on May 29th, 2008 by velo
The original post is from Justin, and can be found here.
Just need to add this to pom.xml:
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<configuration>
<reportsDirectory>${project.build.directory}/test-reports</reportsDirectory>
</configuration>
</plugin>
</plugins>
</reporting>
Good tests for every one.
VELO
[…] Some time ago, I write a post with instructions to generate test reports here. […]