gpt4 book ai didi

python - 循环运行整个单元测试

转载 作者:行者123 更新时间:2023-11-28 22:03:31 27 4
gpt4 key购买 nike

我希望能够连续 5 次运行整个单元测试 testSuite。这包括启动、测试以及拆卸方法。

我尝试了所有可能的方法,包括将整个类添加到 for 循环中,但没有成功。感谢您的帮助。

import unittest, time, re

class IIIAppforloop(unittest.TestCase):
def setUp(self):
print("setting up")

def testappforloop(self):
print ("testappforloop1")
def testappforloop2(self):
print ("testappforloop2")

def tearDown(self):
print ("tearing down")

if __name__ == "__main__":
unittest.main()

最佳答案

如果您真的想在循环中运行测试并且您使用的是 Python 2.7+:

# ... skipped ...

if __name__ == "__main__":
for i in range(5):
unittest.main(exit=False)

关于python - 循环运行整个单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9038658/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com