• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to generate HTML testing with Ant and Maven without JUnit

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I have a file called "build.xml" and I need to generate tests into a HTML file with "pom.xml" (Maven) or "build.xml" (Ant). If it is possible using targets into Maven file.
Someone knows how I could write the code needed to create one HTML file with all test without JUnit? Maybe I need to create one pom.xml and surefire-report-plugin from Maven?

Part of my code is:

build.xml : (I use targets for each task)
<project name="Factura" basedir="." default="fact">
<target name="fact" depends="createFact,delFact" />
<target name="createFact">
<sql....>
</target>
<target name="delFact">
<sql....>
</target>

pom.xml : (I dont know if i can generate HTML report only with build.xml (ant))

Regards and thanks for everything.
 
Climb the rope! CLIMB THE ROPE! You too tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic