Allure+Junit+maven环境搭建

本文只介绍环境搭建

1 allure下载地方https://github.com/allure-framework/allure2/releases(windows环境搭建)
Allure+Junit+maven环境搭建_第1张图片

解压以后,把allure-commandline-2.12.1\allure-2.12.1\bin加到环境变量PATH

打开cmd,试一下allure --version,如果有显示版本号即按照成功

2 下载allure+junit demo,开始不用自己写,先试一下把官网的跑起来再说
Allure+Junit+maven环境搭建_第2张图片
下载地址如下:
https://github.com/allure-examples

拿到git地址,把代码克隆下来,克隆下来的项目默认是maven java项目,如果要在eclipse引入的话,要安装maven环境

如果按照普通项目导入的话,编译方式不一样,项目会编译失败的

3.执行用例

//全部运⾏
$ mvn clean test

4 生成报告

//查看报告
allure serve target/allure-results

按照上面基本的环境就搭建成功了,浏览器会自动打开报告

技术部 > Maven+Allure+Junit 环境搭建 > image2019-6-5 17:10:13.png

你可能感兴趣的:(自动化测试)