with ant it is possible to run JUnit tests and generate test reports in several formats: text, HTML, XML ..
and it is recurrent to send test results by email to the responsible, so my question: is it possible to use the xml file generated by Junit in order to send a summary(Html) of the test execution?
or is there another better solution to send the results test execution by email?
any help will be appreciated 🙂
thanks for your helps.
with ant it is possible to run JUnit tests and generate test reports in
Share
You could also convert the XML file into an HTML using XSL styles within
junitreporttask.http://ant.apache.org/manual/Tasks/junitreport.html
And then use the inbuilt
mailtask to mail this HTML file