Added throws declarations for IOExceptions on Issue setters.

The FileIssue implementation now checks to ensure the success of the setters.
This commit is contained in:
Jonathan Bernard
2010-05-19 09:54:18 -05:00
parent c39061f771
commit b7670e69f3
11 changed files with 160 additions and 27 deletions

View File

@ -82,7 +82,7 @@
classpathref="groovyc.classpath"/>
</target>
<target name="run-tests" depends="compile-tests">
<target name="test" depends="compile-tests">
<junit fork="yes" haltonfailure="yes">
<classpath refid="test.classpath"/>
<formatter type="brief" usefile="false" />
@ -94,7 +94,7 @@
</junit>
</target>
<target name="build" depends="compile,run-tests">
<target name="build" depends="compile,test">
<mkdir dir="${build.dir}/jar"/>
<jar
destfile="${build.dir}/jar/pit-${application.version}.${build.number.final}.jar"