3
__init__ для unittest.TestCase
Я хотів би додати пару речей до того, що unittest.TestCaseробить клас при ініціалізації, але я не можу зрозуміти, як це зробити. Зараз я роблю це: #filename test.py class TestingClass(unittest.TestCase): def __init__(self): self.gen_stubs() def gen_stubs(self): # Create a couple of tempfiles/dirs etc etc. self.tempdir = tempfile.mkdtemp() # more stuff here Я …
122
python
unit-testing