Added test jars and the first unit test.

This commit is contained in:
akwizgran
2011-06-21 23:12:30 +01:00
parent cd4f99df3d
commit 9e76cc6a4f
10 changed files with 108 additions and 21 deletions

16
test/build.xml Normal file
View File

@@ -0,0 +1,16 @@
<project name='test' default='compile'>
<import file='../build-common.xml'/>
<target name='test' depends='depend'>
<junit haltonfailure='true' printsummary='on' showoutput='true'>
<classpath>
<fileset refid='bundled-jars'/>
<fileset refid='test-jars'/>
<path refid='api-classes'/>
<path refid='component-classes'/>
<path refid='test-classes'/>
<path refid='util-classes'/>
</classpath>
<test name='net.sf.briar.util.FileUtilsTest'/>
</junit>
</target>
</project>