如何使用soap ui中的groovy为Project创建摘要报告

问题描述 投票:0回答:1

我正在使用groovy为我的soap ui项目准备HTML摘要报告

使用下面的拆卸脚本我可以读取测试用例状态和名称,但我不确定项目报告,因为拆除可以写在测试套件下。

enter code here {代码}

def failedTestCases = 0

runner.results.each { testCaseResult ->
    def name = testCaseResult.testCase.name
    if(testCaseResult.status.toString() == 'FAILED'){
        failedTestCases ++
        log.info "$name has failed"
        testCaseResult.results.each{ testStepResults ->
            testStepResults.messages.each() { msg -> log.info msg } 
        }
    }else{
        log.info "$name works correctly"
    }
}

log.info "total failed: $failedTestCases"

{码}

groovy soapui
1个回答
0
投票

即使在测试项目级别,也可以使用拆除选项

我添加了一条消息并运行了该项目并且成功了

enter image description here

如果您使用的是SOAPui而不是Ready API

拆解脚本可以在下面看到

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.