I am using soapui free version to generate the report of test cases,but it is only generating a junit report in XML form, now I want to convert that into an HTML form.
相关问题
- Dependencies while implementing Mocking in Junit4
- org.apache.commons.fileupload.disk.DiskFileItem is
- Mockito : How to test my Dao with mocking?
- NPE in StrutsTestCase after enabling Tiles
- PowerMockito verify that a static method is never
相关文章
- Setup and Tear Down of Complex Database State With
- JUnit continue to assert things after expected exc
- How to specify @category in test task in gradle?
- “Exception in thread ”main“ java.lang.NoClassDefFo
- Why Jenkins fails to load the resources?
- Mockito: Match any String except one [duplicate]
- Test the error code of a custom exception with JUn
- How to share resources between unit test and instr
There are several ways to do that, but you can simply use XSL transformation (junitreport option) as suggested by this answer How can I generate an HTML report for Junit results?
I would also suggest to consider the possibility to use TestNG, please find out all details here https://stackoverflow.com/questions/12768214/testng-or-junit-in-java/12768737#12768737