https://bz.apache.org/bugzilla/show_bug.cgi?id=64597

--- Comment #2 from [email protected] ---
Here is the build step which invokes the JUnit 
<!-- Run Unit Tests and Generate Report -->
  <target name="test.junit.launcher" depends="compile.module.goda1.production">
    <echo message="Launcher Started" />
    <mkdir dir="${test.report.dir}" />
    <junitlauncher haltOnFailure="true" printSummary="true" >
      <classpath>
        <!-- the test classes themselves -->
        <pathelement location="${goda1.testoutput.dir}"/>
        <pathelement location="${goda1.output.dir}"/>
      </classpath>
      <testclasses outputdir="${test.report.dir}">
        <fileset dir="${goda1.testoutput.dir}">
          <include name="**/*Test.class"/>
        </fileset>
        <listener type="legacy-xml" sendSysOut="true" sendSysErr="true"/>
        <listener type="legacy-plain" sendSysOut="true" />
      </testclasses>
    </junitlauncher>
  </target>

The ${goda1.testoutput.dir} represents compiled output of the test classes and
the ${goda1.output.dir} represents the compiled output of the project source
code.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to