Reputation: 147
Where can i save my testNG reports for analysis later. My regression suite will be running daily and I want to store the reports for anaysis and comparitive study later. What can i use for the same?
Upvotes: 0
Views: 128
Reputation: 3927
As suggested you can go database..
Generally i used custom HTML reports for suite and links to Tests HTML reports. I will create dir with data and time stamp for every run and move to shared location to keep and share.
Upvotes: 0
Reputation: 14746
There is no such repository. You can go ahead and build a customized org.testng.IReporter
which persists the test results to a database which you can fetch and run your analysis.
Upvotes: 0