我正在使用SoapUI v5.2.1
来测试OSB Services
。
LoginTestCase
|
|__TestSuite
|
|__TestCase1
| |
| |__Success Test Step
|
|__TestCase2
|
|__Failure Test Step
我已将所有内容配置为我提到的目录。
它将Failure Test output
作为:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Server</faultcode>
<faultstring>XYZ-001: input is wrong</faultstring>
<detail>
<con:fault xmlns:con="http://www.bea.com/wli/sb/context">
<con:errorCode>XYZ-001</con:errorCode>
<con:reason>input is wrong</con:reason>
<con:location>
<con:node>PipelinePairNode1</con:node>
<con:pipeline>PipelinePairNode1_response</con:pipeline>
<con:stage>stage1</con:stage>
<con:path>response-pipeline</con:path>
</con:location>
</con:fault>
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
这是一个失败的结果,所以它应该在失败的类别下。 但是,当我从测试运行器运行它时,它正在给出:
SoapUI 5.2.1 TestCaseRunner Summary
-----------------------------
Time Taken: 430ms
Total TestSuites: 1
Total TestCases: 2 (0 failed)
Total TestSteps: 2
Total Request Assertions: 0
Total Failed Assertions: 0
Total Exported Results: 2
我需要知道为什么它给0失败而不是1个测试用例失败?