嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
autotest_zsp
└── autotest_pytest
├── __pycache__
│ ├── __init__.cpython-312.pyc
│ └── conftest.cpython-312-pytest-8.3.2.pyc
├── common
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-312.pyc
│ │ ├── global_var.cpython-312.pyc
│ │ ├── log.cpython-312.pyc
│ │ └── yaml_deal.cpython-312.pyc
│ ├── global_var.py
│ ├── log - 副本.py
│ ├── log.py
│ └── yaml_deal.py
├── conftest.txt
├── data
│ ├── data1.yaml
│ └── info.yaml
├── docs
├── log
│ └── 2024-9-6.log
├── no_use
│ ├── __pycache__
│ │ └── interface_test.cpython-312-pytest-8.3.2.pyc
│ ├── crc_calculate.py
│ ├── interface_test.py
│ ├── ncuc.py
│ ├── payload_packet---.py
│ ├── payload_packet.py
│ └── tcp_connect.py
├── output
│ └── report
│ └── report.html
├── pytest.ini
├── run.py
├── testcase
│ ├── __pycache__
│ │ ├── test_case001.cpython-310-pytest-8.2.2.pyc
│ │ ├── test_case001.cpython-312-pytest-8.3.2.pyc
│ │ └── test_intf_dq_debug.cpython-312-pytest-8.3.2.pyc
│ ├── case.xlsx
│ ├── interface
│ │ ├── __pycache__
│ │ │ ├── test_dq_debug.cpython-312-pytest-8.3.2.pyc
│ │ │ └── test_intf_dq_debug.cpython-312-pytest-8.3.2.pyc
│ │ ├── output
│ │ │ └── report
│ │ │ └── report.html
│ │ └── test_dq_debug.py
│ └── test_case001.py
└── utils
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-312.pyc
│ ├── dq_debug_intf.cpython-312.pyc
│ └── tcp_client.cpython-312.pyc
├── dq_debug_intf.py
├── tcp_client - 副本.py
└── tcp_client.py
19 directories, 41 files