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

cucumber 使用资料

时间:2017-08-17 21:32:31      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:地址   director   详细   github   execution   directory   学习笔记   shu   art   

1、cucumber reporting

github:https://github.com/damianszczepanik/cucumber-reporting

配置:详细参考上述地址描述

 a.添加一个maven依赖项到你的pom

<dependency>
    <groupId>net.masterthought</groupId>
    <artifactId>cucumber-reporting</artifactId>
    <version>3.9.0</version>
</dependency>
b. 插件:
<plugin>
<groupId>net.masterthought</groupId>
<artifactId>maven-cucumber-reporting</artifactId>
<version>3.9.0</version>
<executions>
<execution>
<id>execution</id>
<phase>verify</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<projectName>collectioncucumbertest</projectName>
<outputDirectory>${project.build.directory}/cucumber-html-reports</outputDirectory>
<cucumberOutput>${project.build.directory}/cucumber.json</cucumberOutput>
<parallelTesting>false</parallelTesting>
</configuration>
</execution>
</executions>
</plugin>

cucumber实战:
http://www.jianshu.com/p/b44245bd9d8b
Cucumber测试工具学习笔记重要参考:
http://blog.csdn.net/henni_719/article/details/53606684
http://blog.csdn.net/henni_719/article/details/53608144
http://blog.csdn.net/henni_719/article/details/53609423
cucumber集成学习:
http://www.cnblogs.com/fanxiaoxiao/category/532322.html
Jenkins集成Cucumber生成图形化的测试报告
http://blog.csdn.net/liuchuanhong1/article/details/52593438
cucumber高阶用法
http://www.tuicool.com/articles/6jaiUve




 

cucumber 使用资料

标签:地址   director   详细   github   execution   directory   学习笔记   shu   art   

原文地址:http://www.cnblogs.com/ceshi2016/p/7384267.html

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