1. 在響應中驗證HTTP頭的內容session
// check for the amazon id header
assert messageExchange.responseHeaders["Server"] != null
2. 驗證必定的響應時間less
// check that response time is less than 400 ms
assert messageExchange.timeTaken < 400
3. 驗證響應中是否存在附件編輯器
// check that we received 2 attachments
assert messageExchange.responseAttachments.length == 2
4. 驗證響應中是否存在特定的XML元素spa
// check for RequestId element in response
def holder = new XmlHolder( messageExchange.responseContentAsXml )
assert holder["//ns1:RequestId"] != null