Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
proc
/
self
/
root
/
usr
/
local
/
lib
/
python3.9
/
unittest
/
test
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//proc/self/root/usr/local/lib/python3.9/unittest/test/__init__.py
import os import sys import unittest here = os.path.dirname(__file__) loader = unittest.defaultTestLoader def suite(): suite = unittest.TestSuite() for fn in os.listdir(here): if fn.startswith("test") and fn.endswith(".py"): modname = "unittest.test." + fn[:-3] __import__(modname) module = sys.modules[modname] suite.addTest(loader.loadTestsFromModule(module)) suite.addTest(loader.loadTestsFromName('unittest.test.testmock')) return suite if __name__ == "__main__": unittest.main(defaultTest="suite")