我想在空手道API中对断言语句使用“或”运算符。
这是我第一次尝试在空手道API中使用OR运算符:
match response.items[0].type == 'Purchase'
我想使用OR运算符,例如:
match response.items[0].type == 'Purchase' or 'Freeplay'
我无法使用或语句成功执行
答案 0 :(得分:0)
有时候assert
是最简单的选择:
* def itemType = response.items[0].type
* assert (itemType == 'Purchase') || (itemType == 'Freeplay')
还有其他方法,请参见:https://stackoverflow.com/a/57377284/143475