Junit Report Visualization Tools

I am looking for a unit report visualization tool. I have a set of xml reports created by a special set of test suites, and I want to be able to visualize their history. A Jenkins plugin would be perfect, but a standalone application is fine too.

The only thing I have found so far seems to fit the specification:

http://junitth.sourceforge.net/

Although I am a little afraid to use this, as development seems to have stopped a year or two ago.

Any suggestions are welcome .. thanks

+4
source share
1 answer

A new Allure tool will appear. This is not quite what you described, because it uses its own XML files, which can be automatically generated during a test run through the provided JUnit RunListener. However, it does support many testing-related functions, such as describing user tests, grouping by function and history, adding attachments, etc. You can try to adapt your own XML to your schema , and then generate the visualization using a standalone tool or plugin .

+1
source

Source: https://habr.com/ru/post/1489901/


All Articles