(self)
| 45 | |
| 46 | class TestScriptOutputLogging(unittest.TestCase): |
| 47 | def test_open(self): |
| 48 | self.output_logger = self.create_logger() |
| 49 | self.output_logger.start() |
| 50 | |
| 51 | self.assertTrue(self.is_file_opened()) |
| 52 | |
| 53 | def test_close(self): |
| 54 | self.output_logger = self.create_logger() |
nothing calls this directly
no test coverage detected