Author: ekoneil
Date: Thu Dec  9 11:52:27 2004
New Revision: 111421

URL: http://svn.apache.org/viewcvs?view=rev&rev=111421
Log:
Fixup junitCore to go against the .class files for the tests rather than the 
source.

This means that the source doesn't need to be available in order to run the 
tests agsint the distribution.  But, why can't you make a <fileset> from a JAR 
file?  :)

BB: self
DRT: NetUI pass


Modified:
   incubator/beehive/trunk/netui/test/ant/junitCore.xml

Modified: incubator/beehive/trunk/netui/test/ant/junitCore.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/ant/junitCore.xml?view=diff&rev=111421&p1=incubator/beehive/trunk/netui/test/ant/junitCore.xml&r1=111420&p2=incubator/beehive/trunk/netui/test/ant/junitCore.xml&r2=111421
==============================================================================
--- incubator/beehive/trunk/netui/test/ant/junitCore.xml        (original)
+++ incubator/beehive/trunk/netui/test/ant/junitCore.xml        Thu Dec  9 
11:52:27 2004
@@ -45,14 +45,14 @@
             <test 
name="org.apache.beehive.netui.test.databinding.expression.IndexedNameTest" 
todir="${testout.dir}"/>
             <test 
name="org.apache.beehive.netui.test.script.simpleaction.InternalExpressionUtilsTest"
 todir="${testout.dir}"/>
             <batchtest fork="yes" todir="${testout.dir}">
-                <fileset dir="${test.src.dir}/junitTests">
-                    <include 
name="org/apache/beehive/netui/test/script/el/**/*Test.java"/>
-                    <exclude 
name="org/apache/beehive/netui/test/script/el/NetUIELCustomBindingContextTest.java"/>
+                <fileset dir="${test.classes.dir}/junitTests">
+                    <include 
name="org/apache/beehive/netui/test/script/el/**/*Test.class"/>
+                    <exclude 
name="org/apache/beehive/netui/test/script/el/NetUIELCustomBindingContextTest.class"/>
                 </fileset>
             </batchtest>
             <batchtest fork="yes" todir="${testout.dir}">
-                <fileset dir="${test.src.dir}/junitTests">
-                    <include 
name="org/apache/beehive/netui/test/datagrid/**Test.java"/>
+                <fileset dir="${test.classes.dir}/junitTests">
+                    <include 
name="org/apache/beehive/netui/test/datagrid/**Test.class"/>
                 </fileset>
             </batchtest>
         </junit>

Reply via email to