上一页 1 2 3 4 5 6 ··· 44 下一页
摘要: controller package com.example.file.controller; import com.example.file.utils.FileUtil; import org.springframework.beans.factory.annotation.Autowired; 阅读全文
posted @ 2023-08-27 16:22 Mr_sven 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 查看官网:https://docs.qameta.io/allure/#_junit_5 源码example: https://github.com/allure-examples/allure-examples/tree/master/allure-junit5/src/test/java/io/ 阅读全文
posted @ 2023-08-26 10:58 Mr_sven 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 命令格式: allure [option] [command] [command options] allure --help 帮助 allure --version 查看版本信息 allure serve 生成在线版本的测试 allure generate <allure-result中间文件> 阅读全文
posted @ 2023-08-25 23:00 Mr_sven 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 1、安装 Java (推荐 1.8 版本),需要配置环境变量2、安装 Allure (2.13以上版本),需要配置环境变量 【下载地址】 https://repo1.maven.org/maven2/io/qameta/allure/allure-commandline/ mac/linux: 下载 阅读全文
posted @ 2023-08-25 22:19 Mr_sven 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 给用例添加禁用标识,被禁用的用例执行后会添加跳过的状态,可以禁用测试类、也可以禁用测试方法 注意:IDEA 不支持,maven 构建才支持 import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Tag; import 阅读全文
posted @ 2023-08-25 21:53 Mr_sven 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 通过 Tag 对用例分组: 环境分组: 测试环境、预发布环境 阶段分组: 冒烟用例 版本分组: V1.1、V1.2 设置标签 根据标签执行 结合 Maven 执行 结合测试套件执行 import org.junit.jupiter.api.Tag; import org.junit.jupiter. 阅读全文
posted @ 2023-08-25 21:37 Mr_sven 阅读(9) 评论(0) 推荐(0) 编辑
摘要: import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.RepeatedTest; import org.junit.jupiter.api.Test; public class RepeatedExampleTe 阅读全文
posted @ 2023-08-25 21:20 Mr_sven 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 排序方式 方法排序 类排序 Suite 方法排序的类型 类型说明 OrderAnnotation(重点) @Order 注解指定排序 DisplayName 根据显示名称排序 Random 随机排序 MethodName 根据方法名称排序 import org.junit.jupiter.api.M 阅读全文
posted @ 2023-08-24 22:30 Mr_sven 阅读(8) 评论(0) 推荐(0) 编辑
摘要: package com.mytest; import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; public class NestedExampleTest { @Nested //需要结合class使用 cla 阅读全文
posted @ 2023-08-24 22:13 Mr_sven 阅读(38) 评论(0) 推荐(0) 编辑
摘要: import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Timeout; import static java.lang.Thread.sleep 阅读全文
posted @ 2023-08-24 21:19 Mr_sven 阅读(244) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 44 下一页