如何在Groovy soapUI中定义数组? [英] How to define array in Groovy soapUI?

查看:194
本文介绍了如何在Groovy soapUI中定义数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在soapUI中工作。我需要在soapUI groovy脚本中的Groovy中定义数组。

I am working in soapUI. I need to define Array in Groovy in soapUI groovy script.

能否请你帮忙

推荐答案

// Define the array
def MAX_SIZE = 4
def myArray = new Object[MAX_SIZE]

// Fill the array
myArray[0] = "This"
myArray[1] = "is"
myArray[2] = "my"
myArray[3] = "array."

// Print content of the array
myArray.each { log.info(it) }

这篇关于如何在Groovy soapUI中定义数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆