欢迎来到我的小角落~这里有技术干货、生活碎碎念,还有偶尔的小脑洞~
#导入测试内置模块import unittest#导入要测试的apifrom _try_except import condition#需要继承unittest.TestCase,def函数必须用test_开头class MyTestCase(unittest.TestCase): def test_something(self): self.assertEqual(condition(),1)