(self)
| 111 | |
| 112 | class TestFileEditTool(unittest.TestCase): |
| 113 | def setUp(self): |
| 114 | self.tool = FileEditTool() |
| 115 | |
| 116 | def test_replace_unique_string(self): |
| 117 | with tempfile.NamedTemporaryFile(mode="w", suffix=".txt", delete=False) as f: |
nothing calls this directly
no test coverage detected