[ Python ] unittest demo
Posted coder211
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[ Python ] unittest demo相关的知识,希望对你有一定的参考价值。
1 # -*- coding: utf-8 -*- 2 3 import unittest 4 5 class MyUT(unittest.TestCase): 6 7 def test_1(self): 8 print("test-1") 9 10 def test_2(selfs): 11 print("test-2") 12 13 @classmethod 14 def run_suite(cls): 15 suite = unittest.TestSuite() 16 suite 17 18 if __name__ == ‘__main__‘: 19 suite = unittest.TestSuite() 20 suite.addTest(MyUT(‘test_1‘)) 21 suite.addTest(MyUT(‘test_2‘)) 22 suite.run()
以上是关于[ Python ] unittest demo的主要内容,如果未能解决你的问题,请参考以下文章