0
は、私は以下のように表示されているJSONを持っている:SOAP UIスクリプトアサーション内のjsonにDTOをチェックする方法は?
{
"rating": "5"
}
私は「評価」の値がnullではないという主張を行っているが、私はDTO「評価」が存在するという別のアサーションを追加します。スクリプトのアサーションはどのようにSOAP UIで行うことができますか?
import com.eviware.soapui.support.GroovyUtils
import groovy.json.JsonSlurper
def response = messageExchange.response.responseContent
def json = new JsonSlurper().parseText(response)
def rating = json.rating
assert json.rating != null
"DTO" で何を話していますか? – Rao