mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-11 18:29:05 +01:00
28 lines
974 B
XML
28 lines
974 B
XML
<project name='test' default='test'>
|
|
<import file='../build-common.xml'/>
|
|
<target name='test' depends='depend'>
|
|
<junit printsummary='on' showoutput='true' fork='yes' forkmode='once'>
|
|
<assertions>
|
|
<enable/>
|
|
</assertions>
|
|
<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.db.DatabaseCleanerImplTest'/>
|
|
<test name='net.sf.briar.db.H2DatabaseTest'/>
|
|
<test name='net.sf.briar.i18n.FontManagerTest'/>
|
|
<test name='net.sf.briar.i18n.I18nTest'/>
|
|
<test name='net.sf.briar.invitation.InvitationWorkerTest'/>
|
|
<test name='net.sf.briar.setup.SetupWorkerTest'/>
|
|
<test name='net.sf.briar.util.FileUtilsTest'/>
|
|
<test name='net.sf.briar.util.StringUtilsTest'/>
|
|
<test name='net.sf.briar.util.ZipUtilsTest'/>
|
|
</junit>
|
|
</target>
|
|
</project>
|