随笔分类 -  unittest

摘要:前置:下载HTMLTestRunner.py文件,放在D:\Programs\Python\Python37\Lib\site-packages目录下 1 """ 2 A TestRunner for use with the Python unit testing framework. It 3 阅读全文
posted @ 2022-04-08 16:32 wujin啊~ 阅读(101) 评论(0) 推荐(0)
摘要:1、 setUp:每个测试方法执行前执行一次 tearDown:每个测试方法结束后执行一次 setUpClass:整个测试执行前执行一次 tearDownClass:整个测试执行后执行一次2、以python自带的unittest框架来运行测试类:右键->Run 'Python tests for u 阅读全文
posted @ 2022-04-06 14:25 wujin啊~ 阅读(84) 评论(0) 推荐(0)