0

I have tests (Unit and Integration) in Go and I need to generate a report in XML (Preferably Junit). Also each test tests a certain functionality. Hence I would like them to be grouped/tagged in report.

The only thing I could find in internet was Go Junit Report. This tool converts test run output to junit XML. I need a way to tag features in Go test and be included in the report.

How can I add tags in Go and get it in output?

Jonathan Hall
  • 75,165
  • 16
  • 143
  • 189
PRASANNA SARAF
  • 333
  • 1
  • 4
  • 17

1 Answers1

0

You could try GoTestSum

Also, since ReportPortal is tagged in the question, i would suggest that you try GoRP client and try to implement the integration with your testing framework by yourself. Reporting API is quite well described here

avarabyeu
  • 693
  • 3
  • 13