我有两个关于'自我'验证表达式的问题:
我的功能
* def isStatus = function(s) { return s ==='SUCCESS' || s ==='ERROR' }
And match response[0] contains { status: '#? isStatus(_)' }
我想对每个响应项都这样做(*代替0):
And match response[*] contains { status: '#? isStatus(_)' }
但它不起作用?有什么不对吗?
如果没有像这个例子中的js函数,我不能这样做:
* def date = { month: 3 }
* match date == { month: '#? _ > 0 && _ < 13' }
这不起作用&gt; And match response[*] contains { status: '#? _ == 'SUCCESS' || _ == 'ERROR'' }
我有一个json文件,我想存储响应类型。但是,当我在我的JSON文件中使用“自我”验证表达式时,它不起作用? 谢谢你的帮助。
答案 0 :(得分:1)
在:aaa
的文档中搜索。试试这个:
match each
无法理解q 2,请另外询问。