Generating FlexUnit Test Reports with Flex Mojos
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
July 9th, 2008 at 2:34 pm
[…] Some time ago, I write a post with instructions to generate test reports here. […]