Forum Discussion
6 Replies
- nmraoCommunity HeroNot sure what kind of soapui reporting your using and how the tests are run from Jenkins.
Soap UI tests can be invoked using ant(for instance using Junit reporting style) from Jenkins which will show the Test result Trend in a graph as shown in the link below. Please see if that helps.
http://softwaretestersforum.blogspot.in ... nkins.html - ChristianBContributorThat gives you results over time; I'm more interested in results per TestCase, TestSuit etc.
Also, the JUnit plugin seems to require a SoapUI Pro license? - nmraoCommunity HeroSoapUI generates the results in Junit test style. No plug in required.
- ChristianBContributorHi Rao, that feature still requires a pro license, doesn't it? And it doesn't give you HTML reports that look roughly like the screenshot above, or SoapUI's own GUI, correct?
- nmraoCommunity HeroHere is the link where you can see how reports look like.
http://www.soapui.org/Reporting/junit-s ... ports.html
I believe that I got what you mean to say, i.e., you do not see the same screen(which is in the above link) in free editon, then how do we generate reports? - is may be your question.
But you can run the tests using ant scripts which internally uses testrunner soapui's utility. Please see
http://stackoverflow.com/questions/6648 ... ins-hudson
http://my.safaribooksonline.com/book/pr ... 5_d1e26332 -- this link also shows how to create report in html.
Hope this is helpful. - redfish4ktc2Super ContributorHi,
about the link http://www.soapui.org/Reporting/junit-s ... ports.html, it shows you output generate by the soapui reporting which is a pro feature. But you can have the same result with the OSS version: you generate junit style output files and use a html generator to produce the report (for example, ant junitreport task)
You can also use the maven plugin to run the test and generate the report.
About the output html report, as suggested by rao, you won't get the same as with cucumber, but this is something which could be done: as SoapUI generates junit xml files, what you need is a html generator able to transform the xml file into the desired report.