(self)
| 62 | |
| 63 | class TestFileReadTool(unittest.TestCase): |
| 64 | def setUp(self): |
| 65 | self.tool = FileReadTool() |
| 66 | |
| 67 | def test_read_existing_file(self): |
| 68 | with tempfile.NamedTemporaryFile(mode="w", suffix=".txt", delete=False) as f: |
nothing calls this directly
no test coverage detected