We are using Ready API (ours is web services testing), and using only soapui ng pro.
We are executing the tests from command line like this, but, the reports are not stored in HTML format. They were stored in .txt, and also just with failure.
I want to get Junit format HTML reports with all steps (pass, fail, not executed). Please let me know the command.
To print my validations inside of the test, I am using - log.info ("test Passed")
I want to get all these be printed in the Html report.
testrunner.bat c:\newproj\myproj.xml -J -fc:\rep
Tested even this:
testrunner.bat c:\newproj\myproj.xml -a -fc:\\rep -F HTML
I got only .txt, and inside of those, my log.info related output was not printed.
And, I did not get the .HTML file either.