jon 01/03/11 14:54:55
Modified: build build-testcases.xml
Log:
cleaned up echo messages
Revision Changes Path
1.3 +9 -9 jakarta-velocity/build/build-testcases.xml
Index: build-testcases.xml
===================================================================
RCS file: /home/cvs/jakarta-velocity/build/build-testcases.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- build-testcases.xml 2001/03/11 22:20:44 1.2
+++ build-testcases.xml 2001/03/11 22:54:55 1.3
@@ -38,8 +38,8 @@
<!-- =================================================================== -->
<!-- JUnit Test Cases -->
<!-- =================================================================== -->
- <target name="test-all" depends="introspect">
- <echo message="Running JUnit template tests for Velocity ..."/>
+ <target name="test-all" depends="test-introspect">
+ <echo message="Running Template tests..."/>
<java classname="${velocity.test.runner}" fork="yes">
<arg value="${template.test}"/>
@@ -50,9 +50,9 @@
</classpath>
</java>
</target>
-
- <target name="introspect" depends="test-inlinevmscope">
- <echo message="Running JUnit Introspector tests for Velocity ..."/>
+
+ <target name="test-introspect" depends="test-inlinevmscope">
+ <echo message="Running Introspector tests..."/>
<java classname="${velocity.test.runner}" fork="yes">
<arg value="${introspector.test}"/>
@@ -65,7 +65,7 @@
</target>
<target name="test-inlinevmscope" depends="test-multi">
- <echo message="Running JUnit Inline VM Scope tests for Velocity ..."/>
+ <echo message="Running Inline VM Scope tests..."/>
<java classname="${velocity.test.runner}" fork="yes">
<arg value="${inlinevmscope.test}"/>
@@ -78,7 +78,7 @@
</target>
<target name="test-multi" depends="test-cpload">
- <echo message="Running JUnit MultipleFileResourcePathTest ..."/>
+ <echo message="Running Multiple File Resource Path tests..."/>
<java classname="${velocity.test.runner}" fork="yes">
<arg value="${multi.file.resource.path.test}"/>
@@ -91,7 +91,7 @@
</target>
<target name="test-cpload">
- <echo message="Running JUnit ClasspatheResourceTest ..."/>
+ <echo message="Running Classpathe Resource tests..."/>
<java classname="${velocity.test.runner}" fork="yes">
<arg value="${cpload.resource.test}"/>
<classpath>
@@ -103,6 +103,6 @@
</classpath>
</java>
</target>
-
+
</project>