remove extranous reference (that I added) to junit; fix a bit more of the

router tests
This commit is contained in:
kytv
2013-01-03 19:36:39 +00:00
parent 83e25ef26c
commit 3eb00c526d
3 changed files with 3 additions and 8 deletions

View File

@@ -56,8 +56,7 @@ require.gettext=true
# Location of the junit libraries # Location of the junit libraries
# Defaults to the ant library path if not set. # Defaults to the ant library path if not set.
# If set, this must point to a directory that contains the files # If set, this must point to a directory that contains the file junit4.jar
# junit.jar and junit4.jar
#junit.home= #junit.home=
# Location of the hamcrest libraries # Location of the hamcrest libraries

View File

@@ -109,7 +109,6 @@
<pathelement location="${hamcrest.home}/hamcrest-core.jar" /> <pathelement location="${hamcrest.home}/hamcrest-core.jar" />
<pathelement location="${hamcrest.home}/hamcrest-library.jar" /> <pathelement location="${hamcrest.home}/hamcrest-library.jar" />
<pathelement location="${hamcrest.home}/hamcrest-integration.jar" /> <pathelement location="${hamcrest.home}/hamcrest-integration.jar" />
<pathelement location="${junit.home}/junit.jar" />
<pathelement location="${junit.home}/junit4.jar" /> <pathelement location="${junit.home}/junit4.jar" />
</classpath> </classpath>
<compilerarg line="${javac.compilerargs}" /> <compilerarg line="${javac.compilerargs}" />
@@ -216,7 +215,6 @@
<pathelement location="${hamcrest.home}/hamcrest-core.jar" /> <pathelement location="${hamcrest.home}/hamcrest-core.jar" />
<pathelement location="${hamcrest.home}/hamcrest-library.jar" /> <pathelement location="${hamcrest.home}/hamcrest-library.jar" />
<pathelement location="${hamcrest.home}/hamcrest-integration.jar" /> <pathelement location="${hamcrest.home}/hamcrest-integration.jar" />
<pathelement location="${junit.home}/junit.jar" />
<pathelement location="${junit.home}/junit4.jar" /> <pathelement location="${junit.home}/junit4.jar" />
<pathelement location="./build/obj_cobertura" /> <pathelement location="./build/obj_cobertura" />
<pathelement location="./build/obj" /> <pathelement location="./build/obj" />

View File

@@ -133,7 +133,6 @@
<pathelement location="${hamcrest.home}/hamcrest-core.jar" /> <pathelement location="${hamcrest.home}/hamcrest-core.jar" />
<pathelement location="${hamcrest.home}/hamcrest-library.jar" /> <pathelement location="${hamcrest.home}/hamcrest-library.jar" />
<pathelement location="${hamcrest.home}/hamcrest-integration.jar" /> <pathelement location="${hamcrest.home}/hamcrest-integration.jar" />
<pathelement location="${junit.home}/junit.jar" />
<pathelement location="${junit.home}/junit4.jar" /> <pathelement location="${junit.home}/junit4.jar" />
<pathelement location="../../core/java/build/i2ptest.jar" /> <pathelement location="../../core/java/build/i2ptest.jar" />
</classpath> </classpath>
@@ -226,7 +225,6 @@
<pathelement location="${hamcrest.home}/hamcrest-core.jar" /> <pathelement location="${hamcrest.home}/hamcrest-core.jar" />
<pathelement location="${hamcrest.home}/hamcrest-library.jar" /> <pathelement location="${hamcrest.home}/hamcrest-library.jar" />
<pathelement location="${hamcrest.home}/hamcrest-integration.jar" /> <pathelement location="${hamcrest.home}/hamcrest-integration.jar" />
<pathelement location="${junit.home}/junit.jar" />
<pathelement location="${junit.home}/junit4.jar" /> <pathelement location="${junit.home}/junit4.jar" />
<pathelement location="./build/obj_cobertura" /> <pathelement location="./build/obj_cobertura" />
<pathelement location="./build/obj" /> <pathelement location="./build/obj" />
@@ -236,7 +234,7 @@
<pathelement location="${with.cobertura}" /> <pathelement location="${with.cobertura}" />
</classpath> </classpath>
<batchtest todir="../../reports/router/junit/"> <batchtest todir="../../reports/router/junit/">
<fileset dir="./test/"> <fileset dir="./test/junit">
<include name="**/*Test.java" /> <include name="**/*Test.java" />
</fileset> </fileset>
</batchtest> </batchtest>