(self)
| 1564 | """Cover lines 263-304: try_soft_block_repair paths.""" |
| 1565 | |
| 1566 | def _setup(self): |
| 1567 | tm = DummyToolManager() |
| 1568 | ctx = DummyContext(tool_manager=tm) |
| 1569 | ui = DummyUIManager() |
| 1570 | tp = ToolProcessor(ctx, ui) |
| 1571 | return tm, ctx, ui, tp |
| 1572 | |
| 1573 | def _make_mock_tool_state(self, repair_return): |
| 1574 | """Create a mock tool state for soft block repair tests.""" |
no test coverage detected