是否可以通过Spring Cloud Contract 1.2.5.RELEASE中的groovy语法指定重复的查询参数?
我想创建一个合同,以生成对/path?type=1&type=2
的获取请求。
我在合同测试常规文件中尝试了以下内容
urlPath('/path') {
queryParameters {
parameter type: [1, 2]
}
}
生成的RestTest
不幸包含错误的类型:
.queryParam("type","[1, 2]")
代替
.queryParam("type", 1, 2)