TestRunner throwFailureException ...
I got the following exception when I run TestRunner by right clicking on a test case->Launch TestRunner
in SoapUI GUI.
---------------- Response --------------------------
Response Headers: Date : Thu, 12 Mar 2015 16:43:14 GMT
Transfer-Encoding : chunked
#status# : HTTP/1.1 200 OK
Content-Type : text/xml;charset=UTF-8
Server : Apache-Coyote/1.1
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header>
//rest of response text deleted for privacy reasons ...
</soapenv:Body>
</soapenv:Envelope>
at com.eviware.soapui.tools.SoapUITestCaseRunner.throwFailureException(SoapUITestCaseRunner.java:535)
at com.eviware.soapui.tools.SoapUITestCaseRunner.runRunner(SoapUITestCaseRunner.java:437)
at com.eviware.soapui.tools.AbstractSoapUIRunner.run(AbstractSoapUIRunner.java:162)
at com.eviware.soapui.tools.AbstractSoapUIRunner.runFromCommandLine(AbstractSoapUIRunner.java:93)
at com.eviware.soapui.tools.SoapUITestCaseRunner.main(SoapUITestCaseRunner.java:119)
The TestRunner pop up window that showed the progress of running the test showed an errorCode of -1.
As a result, the JUnit-compatible XML file generated by TestRunner did not have any failed messages in it
and the JUnitReport HTML file I created from this XML file showed the test case as "Success".
TestRunner's RootFolder did have all the FAILED text files for failed test steps. So it appears that somehow
TestRunner had hard time collecting and parsing all FAILED text files and generate the report XML file successfully.
However, when the same test case was run via SoapUI's GUI, it run correctly and identified all the failed test steps.
I am using SoapUI 5.0.0 in Java 7 environment on Windows 7 Professional. Any help would be appreciated ...