(self, filename)
| 14 | class OutputCapture: |
| 15 | """Capture all output to both console and file""" |
| 16 | def __init__(self, filename): |
| 17 | self.filename = filename |
| 18 | self.file = None |
| 19 | self.original_stdout = sys.stdout |
| 20 | self.original_stderr = sys.stderr |
| 21 | |
| 22 | def start(self): |
| 23 | """Start capturing output""" |
nothing calls this directly
no outgoing calls
no test coverage detected