Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.3
-
None
Description
The generated Ant build file adds junit to the build.test.classpath.
However, the check for JUnit does not use the classpath:
<target name="test-junit-present"> <available classname="junit.framework.Test" property="junit.present"/> </target>
This should be changed to:
<target name="test-junit-present"> <available classname="junit.framework.Test" property="junit.present" classpathref="build.test.classpath"/> </target>