PATH:
opt
/
bitninja-python-dojo
/
embedded
/
lib
/
python3.9
/
unittest
/
test
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")
[-] test_discovery.py
[edit]
[-] dummy.py
[edit]
[-] _test_warnings.py
[edit]
[-] test_skipping.py
[edit]
[-] test_functiontestcase.py
[edit]
[+]
..
[-] test_suite.py
[edit]
[-] __main__.py
[edit]
[-] support.py
[edit]
[+]
testmock
[-] test_setups.py
[edit]
[-] test_assertions.py
[edit]
[+]
__pycache__
[-] test_runner.py
[edit]
[-] test_loader.py
[edit]
[-] test_case.py
[edit]
[-] __init__.py
[edit]
[-] test_program.py
[edit]
[-] test_break.py
[edit]
[-] test_async_case.py
[edit]
[-] test_result.py
[edit]