(self)
| 145 | |
| 146 | class TestAdd(unittest.TestCase): |
| 147 | def setUp(self): |
| 148 | os.makedirs(OUTPUT_DIR, exist_ok=True) |
| 149 | with output_hidden(): |
| 150 | init() |
| 151 | |
| 152 | def tearDown(self): |
| 153 | shutil.rmtree(OUTPUT_DIR, ignore_errors=True) |
nothing calls this directly
no test coverage detected