Added maven.cactus.printsummary property (same meaning as the printsummary attribute of the Ant junit task).

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113449 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol
2003-05-28 09:36:20 +00:00
parent 913064ea9f
commit ba65139954
3 changed files with 20 additions and 4 deletions

View File

@@ -187,7 +187,8 @@
<cactus warfile="${maven.build.dir}/${pom.artifactId}-cactus.war"
fork="yes" errorproperty="cactustests.error"
failureproperty="cactustests.failure">
failureproperty="cactustests.failure"
printsummary="${maven.cactus.printsummary}">
<ant:classpath>
<ant:pathelement path="${maven.build.dest}"/>
<ant:pathelement location="${cactus.target.classes.dir}"/>

View File

@@ -32,7 +32,7 @@ cactus.src.excludes = **/AllTests.java,**/Test*All.java
cactus.port = 8080
# Decides whether the test result will be printed to the console or
# not. Default is true
# not. Default is false
cactus.junit.usefile = false
# Location of junit test reports for the Cactus tests
@@ -44,6 +44,10 @@ cactus.halt.on.failure = true
# Shall we stop the build in case of test errors?
cactus.halt.on.error = true
# How summary information on test should be printed (see the
# "printsummary" attribute of the JUnit Ant task.
maven.cactus.printsummary = withOutAndErr
# -------------------------------------------------------------------
# Container-related properties
# -------------------------------------------------------------------

View File

@@ -123,8 +123,19 @@
</p>
</td>
</tr>
<!--
<tr>
<td>maven.cactus.printsummary</td>
<td>Yes</td>
<td>
<p>
How summary information on test should be printed to the console. This
property has the same meaning as the <code>printsummary</code> attribute
of the JUnit Ant task. Default value is
<code>maven.cactus.printsummary = withOutAndErr</code>.
</p>
</td>
</tr>
<!--
<tr>
<td>cactus.runner</td>
<td>Yes</td>