|
I
believe I understand the architecture, I'm just not sure how to implement a
solution to this problem. No Classpath entry that I try, even manually
modifying the system class path seems to work. Wouldn't it be here that the
${out.classes.dir} below should handle this? Any other strategies would be
greatly appreciated. Thanks.
<target name="tests">
<echo message="${java.class.path}"/> <junit printsummary="yes" haltonfailure="yes" haltonerror="yes" fork="yes">
<classpath>
<pathelement path="${java.class.path}"/> <pathelement location="${servlet.jar}"/> <pathelement location="${log4j.jar}"/> <pathelement location="${cactus.jar}"/> <pathelement location="${out.classes.dir}"/> <pathelement location="${basedir}"/> </classpath>
<formatter type="plain"
usefile="false"/>
<!-- Functional tests --> <test name="TestSimpleServlet"/> </junit> </target>
|
Title: RE: Can't find test problem
- Can't find test problem Steve Grant
- Re: Can't find test problem Jari Worsley
- RE: Can't find test problem Steve Grant
- Re: Can't find test problem Vincent Massol
- Re: Can't find test problem Steve Grant
- Re: Can't find test problem Vincent Massol
