• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

reports in html format

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hii
i am able to generate report in xml format.but not able to generate html format.i given code like below

<target name="test-reports-junit" depends="init,cactus" description="Generate junit test reports">
<mkdir dir="${test.dir}/reports/junit" />
<junitreport todir="${test.dir}/reports/junit">
<fileset dir="${test.dir}/reports/junit">
<include name="TEST-*.xml" />
</fileset>
<report format="frames" {test.dir}/reports/junit" />
</junitreport>
</target>

can anybody help me....
swarna
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That's what the JUnitReport task does, which you should run after the JUnit task. It reads the XML files and applies stylesheets to them, so that you end up with HTML files.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic