3
__init__ cho unittest.TestCase
Tôi muốn thêm một số thứ vào những gì unittest.TestCaselớp thực hiện khi được khởi tạo nhưng tôi không thể tìm ra cách thực hiện. Ngay bây giờ tôi đang làm điều này: #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. …
122
python
unit-testing