| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| figures/ | 06-May-2025 | - | ||||
| README.md | D | 06-May-2025 | 1.8 KiB | 53 | 31 | |
| requirements.txt | D | 06-May-2025 | 33 | 3 | 2 | |
| test.ap | D | 06-May-2025 | 1.1 KiB | |||
| test.txt | D | 06-May-2025 | 10 | 1 | 1 | |
| test_ap.py | D | 06-May-2025 | 4.1 KiB | 113 | 91 |
README.md
1# AP分析工具单元测试 2 3## 概述 4为了确保开发过程中代码逻辑紧密贴合设计要求,实施单元测试是一种关键实践。本文主要介绍AP分析工具单元测试使用指导。 5 6## 目录 7 8 ap_code 9 ├── ... # 其他文件 10 └──test 11 ├── figures # 图片文件 12 ├── test.txt # txt格式文件 13 ├── test.ap # ap后缀文件 14 ├── test_ap.py # 单元测试代码 15 ├── requirements.txt # python依赖库 16 └── README.md # 指导文档 17 18## 软件环境准备 19 20依赖版本:python3.11 21 221.右键windows开始菜单,单击运行,输入cmd,单击确定。 23 242.在命令行中进入到ap_code\test目录下,安装依赖库命令如下: 25 26 pip install -r requirements.txt 27 283.查看谷歌浏览器版本,此处得到浏览器版本为126.0.6478.61,查询网址为:chrome://version/,在浏览器中访问,如下图所示: 29 30 31 324.由于浏览器版本为126.0.6478.61,查看驱动版本列表中是否有126.0.6478.61版本,若有可下载此版本驱动;若没有可下载126.0.6478版本。进入版本系统选择列表后,选择win32(win系统不区分win32或win64)下载压缩包,下载地址如下: 33 34[驱动下载地址](https://googlechromelabs.github.io/chrome-for-testing/) 35 365.将解压缩获得的chromedriver.exe放到Python的Scripts目录下。 37 38## 使用说明 39 40在命令行中进入到ap_code\test目录下: 41 421.执行所有用例,命令为: 43 44 pytest -s -W ignore test_ap.py 45 462.执行单个用例,如test_import_file,命令为: 47 48 pytest -s -W ignore test_ap.py::test_import_file 49 50## 相关仓 51 52暂无 53