码迷,mamicode.com
首页 > 其他好文 > 详细

RF-template使用

时间:2017-05-21 18:51:28      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:技术分享   arguments   image   art   strong   案例   测试案例   key   start   

 

 在测试案例中,可以使用template设置进行数据驱动的测试,template设置方法:

在设置项中填写模板的关键字名称,测试案例本身只能包含template关键字使用的数据;

 

技术分享

*** Settings ***
Resource 操作层.txt
Resource 流程层.txt

*** Test Cases ***
case1
[Setup] 初始化
[Template] 比较两个数是否相等
1 2
3 3
5 4
[Teardown] 垃圾回收

技术分享

*** Keywords ***
初始化
log 测试前数据初始化完毕

垃圾回收
log 测试完成后垃圾回收完毕

执行超时
log 测试执行超时啦

比较两个数是否相等
[Arguments] ${v1} ${v2}
should be equal ${v1} ${v2}

 

执行结果:


Starting test: Project2.套件层.case1
20170521 17:44:17.072 : INFO : 测试前数据初始化完毕
20170521 17:44:17.072 : INFO :
Argument types are:
<type ‘unicode‘>
<type ‘unicode‘>
20170521 17:44:17.088 : FAIL : 1 != 2
20170521 17:44:17.088 : INFO :
Argument types are:
<type ‘unicode‘>
<type ‘unicode‘>
20170521 17:44:17.088 : INFO :
Argument types are:
<type ‘unicode‘>
<type ‘unicode‘>
20170521 17:44:17.088 : FAIL : 5 != 4
20170521 17:44:17.088 : INFO : 测试完成后垃圾回收完毕
Ending test: Project2.套件层.case1

 

RF-template使用

标签:技术分享   arguments   image   art   strong   案例   测试案例   key   start   

原文地址:http://www.cnblogs.com/apple2016/p/6885462.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!