标签:http ilog uav gil 失败 erb 默认 int win
import unittest class myTest(unittest.TestCase): def test_01(self): print("普通方法1") def test_02(self): print("普通方法2") def test_03(self): print("普通方法3") class myTest02(unittest.TestCase): def test_mytest01(self): print("类test_mytest01的方法01") def test_mytest02(self): print("类test_mytest01的方法02") if __name__ == ‘__main__‘: suite=unittest.TestLoader().loadTestsFromModule("unit01.py") unittest.TextTestRunner(verbosity=2).run(suite)
标签:http ilog uav gil 失败 erb 默认 int win
原文地址:https://www.cnblogs.com/Qliupeng/p/11913385.html