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

自动化测试 Cucumber

时间:2014-10-19 15:40:16      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:des   http   io   os   ar   java   sp   文件   div   

Cucumber是一个能够理解用普通语言描述的测试用例的支持行为驱动开发(BDD)的自动化测试工具,用Ruby编写,支持Java和.Net等多种开发语言。

 

Cucumber 三大组成:

  1. Features
  2. Step_definitions
  3. Cucumber command

Feature是用简单的自然语言描述的。一个Feature有下面部分组成:

  • 一个title
  • 一段任意格式的描述语句
  • 任意数目的scenarios
  • 每个scenario可以包含任意数目的steps
  • Step定义必须以关键字Given, When, Then, And 开始
  • Feature文件必须以.feature为后缀名

Step_definitions根据feature文件中定义的step编写对应的测试代码,所用编程语言可以和所测应用程序编程语言一致。

Cucumber command, 当运行cucumber命令时,cucumber会分析feature文件中定义的step,然后去step_definitions寻找相匹配的step,如果找到就执行step中的代码。 执行命令,在命令行中输入cucumber项目目录\features\文件名.feature

 

Cucumber 的开发过程(摘自http://cukes.info/):

1: Describe behaviour in plain text

bubuko.com,布布扣

2: Write a step definition in Ruby

bubuko.com,布布扣

3: Run and watch it fail

bubuko.com,布布扣

4. Write code to make the step pass

bubuko.com,布布扣

5. Run again and see the step pass

bubuko.com,布布扣

6. Repeat 2-5 until green like a cuke

bubuko.com,布布扣

7. Repeat 1-6 until the money runs out

自动化测试 Cucumber

标签:des   http   io   os   ar   java   sp   文件   div   

原文地址:http://www.cnblogs.com/LilianChen/p/4034939.html

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