实体包entity下面有4个类,主要存放java对象,每个类必须有私有属性,空参构造,get set方法
具体excel中数据信息见---工具类excel文章
1、API类
解析excel中接口信息的表头信息,需要定义参数变量,get set方法
@Excel是使用了easypoi对Excel进行读写,需要导入依赖
<dependency>
<groupId>cn.afterturn</groupId>
<artifactId>easypoi-annotation</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>cn.afterturn</groupId>
<artifactId>easypoi-base</artifactId>
<version>4.0.0</version>
</dependency>
添加com.alibaba.excel.annotation.ExcelProperty
注解来生成表头,实体类数据作为Excel数据
2、Case类
解析excel中用例的表头信息,需要定义参数变量,get set方法
3、JsonPathValidate类
4、WriteBackData类
原文地址:https://www.cnblogs.com/wanshuang/p/12513608.html
时间: 2024-10-28 09:59:04