Skip to content
Snippets Groups Projects
Commit a5bb9596 authored by akwizgran's avatar akwizgran
Browse files

Enabled assertions in junit tests.

parent 0ed2a7c9
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@
</target>
<target name='compile'>
<mkdir dir='build'/>
<javac srcdir='net/sf/briar' destdir='build'
<javac srcdir='net/sf/briar' destdir='build' source='1.5'
includeantruntime='false'>
<classpath>
<fileset refid='bundled-jars'/>
......
<project name='test' default='test'>
<import file='../build-common.xml'/>
<target name='test' depends='depend'>
<junit printsummary='on' showoutput='true'>
<junit printsummary='on' showoutput='true' fork='yes' forkmode='once'>
<assertions>
<enable/>
</assertions>
<classpath>
<fileset refid='bundled-jars'/>
<fileset refid='test-jars'/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment