(self)
| 27 | self.assertIn("[ERROR] String found 2 times", res) |
| 28 | |
| 29 | def test_not_found(self): |
| 30 | res = tool_patch_file(str(self.test_file), "missing", "whatever") |
| 31 | self.assertIn("[ERROR] String not found", res) |
| 32 | |
| 33 | def test_undo_roundtrip(self): |
| 34 | # Initial state |
nothing calls this directly
no test coverage detected