我在soapUI工作。我需要在soapUI groovy脚本中用Groovy定义Array。
你能帮我吗
答案 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)