工具: IBM Mobilefirst TestWorkbench 8.6.0.1
操作系统: Windows 7
有一个显示 3 个文本框的应用程序,其中两个用于输入数字,第三个显示数字总和
记录测试。(在两个文本框中分别输入数字;结果显示在第三个测试框中)
播放时,是否可以将数字存储在变量中,添加它们并与应用程序显示的结果进行交叉验证?
以上将帮助我们验证银行应用程序中的交易
工具: IBM Mobilefirst TestWorkbench 8.6.0.1
操作系统: Windows 7
有一个显示 3 个文本框的应用程序,其中两个用于输入数字,第三个显示数字总和
记录测试。(在两个文本框中分别输入数字;结果显示在第三个测试框中)
播放时,是否可以将数字存储在变量中,添加它们并与应用程序显示的结果进行交叉验证?
以上将帮助我们验证银行应用程序中的交易
是的,有可能
多米尼克
在下面找到我用于执行问题中提到的操作的 Custon 代码(编辑了一下)
在“自定义代码详细信息”中添加参数。代码中的 args[0] 是指“自定义代码详情”中添加的第一个参数。
package customcode;
import org.eclipse.hyades.test.common.event.VerdictEvent;
import com.ibm.rational.test.lt.kernel.services.ITestExecutionServices;
/**
* @author unknown
*/
public class Class implements
com.ibm.rational.test.lt.kernel.custom.ICustomCode2 {
/**
* Instances of this will be created using the no-arg constructor.
*/
public Class() {
}
/**
* For javadoc of ICustomCode2 and ITestExecutionServices interfaces, select 'Help Contents' in the
* Help menu and select 'Extending Rational Performance Tester functionality' -> 'Extending test execution with custom code'
*/
public String exec(ITestExecutionServices tes, String[] args) {
String L4_InitBalance = args[1];
String L1_InitBalance = args[0];
String L4_FinalBalance = args[3];
String L1_FinalBalance = args[2];
if((L4_InitBalance == L4_FinalBalanc)&&(L1_InitBalance == L1_FinalBalance))
tes.getTestLogManager().reportVerificationPoint("SFT PASSED",VerdictEvent.VERDICT_PASS,"SFT has PASSED");
else
tes.getTestLogManager().reportVerificationPoint("SFT FAILED",VerdictEvent.VERDICT_FAIL,"SFT has FAILED");
return null;
}
}