1515- cook
1616- reward
1717
18- 每个模块只有少量功能,全部做 e2e 测试即可。测试脚本统一放在 ` testing /ops/` 下。
18+ 每个模块只有少量功能,全部做 e2e 测试即可。测试脚本统一放在 ` tests/manual /ops/` 下。
1919
2020| 模块 | 功能 | 状态 |
2121| ------| ------| ------|
3636### startup 测试 ✅
3737
3838``` bash
39- python testing /ops/startup.py
40- python testing /ops/startup.py 127.0.0.1:16384
39+ python tests /ops/startup.py
40+ python tests /ops/startup.py 127.0.0.1:16384
4141```
4242
4343### normal_fight 测试 ✅
4444
4545``` bash
46- python testing /ops/normal_fight.py
47- python testing /ops/normal_fight.py 127.0.0.1:16384 3 # 指定设备和次数
48- python testing /ops/normal_fight.py --plan examples/plans/normal_fight/7-46SS-all.yaml
46+ python tests /ops/normal_fight.py
47+ python tests /ops/normal_fight.py 127.0.0.1:16384 3 # 指定设备和次数
48+ python tests /ops/normal_fight.py --plan examples/plans/normal_fight/7-46SS-all.yaml
4949```
5050
5151### campaign 测试 ✅
5252
5353``` bash
54- python testing /ops/campaign.py # 困难驱逐 x1
55- python testing /ops/campaign.py 127.0.0.1:16384 困难航母 3 # 指定战役和次数
56- python testing /ops/campaign.py " " 简单驱逐 2
54+ python tests /ops/campaign.py # 困难驱逐 x1
55+ python tests /ops/campaign.py 127.0.0.1:16384 困难航母 3 # 指定战役和次数
56+ python tests /ops/campaign.py " " 简单驱逐 2
5757```
5858
5959### expedition 测试 ✅
6060
6161``` bash
62- python testing /ops/expedition.py
63- python testing /ops/expedition.py 127.0.0.1:16384
62+ python tests /ops/expedition.py
63+ python tests /ops/expedition.py 127.0.0.1:16384
6464```
6565
6666### decisive 测试 ❌
@@ -70,24 +70,24 @@ python testing/ops/expedition.py 127.0.0.1:16384
7070### exercise 测试 ✅
7171
7272``` bash
73- python testing /ops/exercise.py --fleet 1
74- python testing /ops/exercise.py --fleet 1 --rival 3
73+ python tests /ops/exercise.py --fleet 1
74+ python tests /ops/exercise.py --fleet 1 --rival 3
7575```
7676
7777### build 测试 ❌
7878
7979``` bash
80- python testing /ops/build.py
81- python testing /ops/build.py 127.0.0.1:16384
80+ python tests /ops/build.py
81+ python tests /ops/build.py 127.0.0.1:16384
8282```
8383
8484### repair 测试 ❌
8585
8686#### 修复第一艘舰船 ✅
8787
8888``` bash
89- python testing /ops/repair.py
90- python testing /ops/repair.py 127.0.0.1:16384
89+ python tests /ops/repair.py
90+ python tests /ops/repair.py 127.0.0.1:16384
9191```
9292
9393#### 按照名称修复舰船 ❌
@@ -97,21 +97,21 @@ python testing/ops/repair.py 127.0.0.1:16384
9797### destroy 测试 ✅
9898
9999``` bash
100- python testing /ops/destroy.py
101- python testing /ops/destroy.py 127.0.0.1:16384
100+ python tests /ops/destroy.py
101+ python tests /ops/destroy.py 127.0.0.1:16384
102102```
103103
104104### cook 测试 ✅
105105
106106``` bash
107- python testing /ops/cook.py
108- python testing /ops/cook.py 127.0.0.1:16384 2
107+ python tests /ops/cook.py
108+ python tests /ops/cook.py 127.0.0.1:16384 2
109109```
110110
111111### reward 测试 ✅
112112
113113``` bash
114- python testing /ops/reward.py
115- python testing /ops/reward.py 127.0.0.1:16384
116- python testing /ops/reward.py 127.0.0.1:16384 --auto
114+ python tests /ops/reward.py
115+ python tests /ops/reward.py 127.0.0.1:16384
116+ python tests /ops/reward.py 127.0.0.1:16384 --auto
117117```
0 commit comments