Update of /cvsroot/webmacro/webmacro/test
In directory sc8-pr-cvs1:/tmp/cvs-serv13677/test
Modified Files:
build.xml
Log Message:
Add WM(Properties), WM(Servlet, Properties), constructors and test case
Index: build.xml
===================================================================
RCS file: /cvsroot/webmacro/webmacro/test/build.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** build.xml 10 Jan 2003 16:49:45 -0000 1.9
--- build.xml 27 Mar 2003 00:35:30 -0000 1.10
***************
*** 6,13 ****
<property name="test" value="Test*" />
- <taskdef name="junit"
- classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask" />
-
<path id="class.path">
<pathelement path="${java.class.path}" />
</path>
--- 6,11 ----
<property name="test" value="Test*" />
<path id="class.path">
+ <fileset dir="lib" includes="*.jar" />
<pathelement path="${java.class.path}" />
</path>
***************
*** 24,27 ****
--- 22,30 ----
<pathelement path="${java.class.path}" />
</path>
+
+ <taskdef name="junit"
+ classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask" >
+ <classpath refid="class.path"/>
+ </taskdef>
|