长情玫瑰

文章
6
资源
0
加入时间
3年0月9天

Python中的unittest和logging

今天使用Python的unittest模块写了些单元测试,现记录下要点:使用unittest的基本格式如下:import unittestclass Test(unittest.TestCase): def setUp(self): pass def test_a(self): pass def test...