Allure测试框架
1. Allure 的安装
Allure 下载地址:https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/
配置环境变量:
在系统环境 -> Path 中添加 Allure的bin文件路径:F:\allure-2.13.8\bin
2. 在工程中添加Allure的依赖
> Allure官方文档地址:https://docs.qameta.io/allure/
<properties>
<aspectj.version>1.8.10</aspectj.version>
</properties>
<dependencies>
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-junit4</artifactId>
<version>LATEST_VERSION</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<a