Set up a test case. Create a new temporary directory for output files.
(self)
| 117 | self.binary = encoder.binary_path |
| 118 | |
| 119 | def setUp(self): |
| 120 | ''' |
| 121 | Set up a test case. |
| 122 | |
| 123 | Create a new temporary directory for output files. |
| 124 | ''' |
| 125 | # pylint: disable=consider-using-with |
| 126 | self.tmp_dir = tempfile.TemporaryDirectory() |
| 127 | |
| 128 | def tearDown(self): |
| 129 | ''' |
nothing calls this directly
no outgoing calls
no test coverage detected