TA的每日心情 | 开心 2014-12-26 13:34 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
本帖最后由 higkoo 于 2010-12-15 19:44 编辑
lr_checkpoint 原型:
Validates the value of a parameter against an expected value (checkpoint).
int lr_checkpoint("StepName=<step_name>", "ActualValue={<input_param>}", "Compare=<operator>", "ExpectedValue={<checkpoint>}", "StopOnValidationError=<error_code>", LAST );
示例:
- lr_checkpoint("StepName=VerifyCheckpoint",
- "ExpectedValue=Joe",
- "ActualValue={MyOutputParam}",
- "Compare=Equals",
- "StopOnValidationError=false",
- LAST );
复制代码
结果在LoadRunner(11.00)中并没有这个函数,无法使用!
而web_report_data_point原型:
Specifies a data point and adds it to the test results.
int web_report_data_point( const char *EventType, const char *EventName , const char *DataPointName , LAST );
示例:
- web_report_data_point( "EventType=Error" , "EventName=StepTimeOut" , "DataPointName=timeout" , LAST );
复制代码
在脚本生成器的“查看”菜单下查看其报告,没有任何体现。在Controller和analysis里也无任何体现。这函数有何用? |
|