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 …
122
python
unit-testing