如何在Groovy soapUI中定义数组?

时间:2012-01-23 06:40:14

标签: arrays groovy soapui

我在soapUI工作。我需要在soapUI groovy脚本中用Groovy定义Array。

你能帮我吗

2 个答案:

答案 0 :(得分:3)

// 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) }

答案 1 :(得分:0)

请参阅此处,例如:http://groovy.codehaus.org/JN1025-Arrays