- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Groovy Script with SoapUI 的新手。我必须将数组传递给方法并修改值,然后将它们打印在日志中。为此,我编写了以下脚本。但它没有按预期工作。
String [] countries = new String[5];
void ReuseArray(String[] regions){};
countries[0] = "India";
countries[1] = "Singapore";
countries[2] = "Indonesia";
countries[3] = "Japan";
countries[4] = "Thailand";
for (int i=0; i<5; i++)
{
log.info("Country :" + countries[i]);
}
ReuseArray(countries);
void ReuseArrayData(String[] regions)
{
for (int i=0; i<5; i++)
{
log.info("Method :" + regions[i]);
}
}
上述脚本产生以下输出:
2014 年 7 月 10 日星期四 19:08:13 IST:信息:欢迎使用
2014 年 7 月 10 日星期四 19:08:13 IST:信息:国家/地区:印度
Thu Jul 10 19:08:13 IST 2014:INFO:Country:Singapore
2014 年 7 月 10 日星期四 19:08:13 IST:信息:国家/地区:印度尼西亚
2014 年 7 月 10 日星期四 19:08:13 IST:信息:国家/地区:日本
2014 年 7 月 10 日星期四 19:08:13 IST:信息:国家/地区:泰国
如有错误请指正
最佳答案
在发现错误后,我找到了我的问题的正确答案。这是代码。
log.info("Welcome ")
String [] countries = new String[5];
countries[0] = "India";
countries[1] = "Singapore";
countries[2] = "Indonesia";
countries[3] = "Japan";
countries[4] = "Thailand";
for (int i=0; i<5; i++)
{
log.info("Country :" + countries[i]);
}
ReuseArrayData(countries);
void ReuseArrayData(String[] regions)
{
for (int i=0; i<5; i++)
{
log.info("Method :" + regions[i]);
}
}
关于testing - 我们如何在 SoapUI Pro 中使用 Groovy Script TestStep 将数组传递给方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24678082/
SoapUI 提供了在 SOAP 请求中动态插入属性的通用语法。在他们的documentation他们解释了如何根据属性范围访问不同的属性: #Project# - references a Proj
我正在尝试在 Java 中的 SOAPUI 项目中设置 SOAPUI TestStep 的属性,如下面的屏幕截图所示。 当我调试下面的代码时,当我getProperty或setPropertyValu
我正在尝试使用 SoapUI API 自动执行 Restful 测试。据此了解,我不想打开 SoapUI GUI 来启动我的项目,尽管可以通过 GUI 导入和执行保存在 WsdlProject 文件中
我是 Groovy Script with SoapUI 的新手。我必须将数组传递给方法并修改值,然后将它们打印在日志中。为此,我编写了以下脚本。但它没有按预期工作。 String [] countr
我正处于使用 SoapUI Pro 学习 Groovy 的初始阶段。所以我开始在 Groovy Teststep 编辑器中编写简单的脚本,如下所示 class Hello { static v
我在 Win7 x32 上使用 SoapUI Pro 5.1.2,并尝试在 Groovy TestStep 中连接到 Selenium Webdriver。 为此,我在 $SOAP_HOME$\bin
我是一名优秀的程序员,十分优秀!