我正在使用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"
{码}