我正在使用JSystem来测试API。
我想知道是否有任何方法可以在Jsystem测试用例中提供List或有限大小的数组作为测试用例参数?
是否可以将测试参数设为:
Do something to the following elements with names ${elementNames}, paramsInclude={"elementNames"}
,其中elementNames是ArrayList<String>
或String[]
,在测试场景中有适当的getter和setter?
答案 0 :(得分:0)
对不起业余的问题。从JSystem文档中找到(我错过了一些东西)。
您可以在测试中将输入参数设置为String数组,代码如下所示:
Do something to the following elements with names ${elementNames}, paramsInclude={"elementNames"}
在Jsystem中,输入参数时,用分号
分隔每个字符串在代码中初始化为String[] elementNames= {}
,并使用适当的getter和setter方法。