摘要: import pytest class TestCase: def setup_class(self): print("setup_class:所有用例执行之前") def setup_method(self): print("setup_method: 每个用例开始前执行") def teardo 阅读全文
posted @ 2024-02-27 17:33 OTAKU_nicole 阅读(10) 评论(0) 推荐(0) 编辑