(self)
| 80 | """ Tests of ConvertFile. """ |
| 81 | |
| 82 | def setUp(self): |
| 83 | self.saved = sys.stdin, sys.stdout |
| 84 | sys.stdin = StringIO('foo') |
| 85 | sys.stdout = TextIOWrapper(BytesIO()) |
| 86 | |
| 87 | def tearDown(self): |
| 88 | sys.stdin, sys.stdout = self.saved |
nothing calls this directly
no outgoing calls
no test coverage detected