ABLUnit testing result.xml - OE11.6

Posted by atuldalvi123 on 14-Apr-2017 03:15

Hi,

Is there any way through which we can generate or design a good report based on the ABLUnit testing result.xml ? 

All Replies

Posted by Mike Fechner on 14-Apr-2017 03:22

Google for „JUnit Viewer“ or something like that and pick the one that fit’s best into your environment.
 

Posted by atuldalvi123 on 14-Apr-2017 04:04

Thanks mike.

I created one batch file to run it from the ANT job. After running ANT job, the log is showing

BUILD SUCCESSFUL

Total time: 0 seconds

but the report is missing. Is there anything do I need to configure ?

In batch file ANT_HOME path is there.

This is my build file

<target name="junitreport">

   <junitreport todir="${junit.output.dir}">

       <fileset dir="${junit.output.dir}">

           <include name="results.xml"/>

       </fileset>

       <report format="frames" todir="${junit.output.dir}"/>

   </junitreport>

</target>

ANT command -

ANT -f %WrkDir%Input\buildTestReports.xml > %WrkDir%Output\ABLUnitTestReportLog.txt

Posted by Mike Fechner on 14-Apr-2017 04:12

Don’t know. I have not used that specific output formatter yet. My preferred one is the one integrated in Jenkins.
 

This thread is closed