(self)
| 431 | assert result == {} |
| 432 | |
| 433 | def test_parse_dict(self): |
| 434 | tm = DummyToolManager() |
| 435 | ctx = DummyContext(tool_manager=tm) |
| 436 | ui = DummyUIManager() |
| 437 | tp = ToolProcessor(ctx, ui) |
| 438 | |
| 439 | result = tp._parse_arguments({"key": "val"}) |
| 440 | assert result == {"key": "val"} |
| 441 | |
| 442 | def test_parse_none(self): |
| 443 | tm = DummyToolManager() |
nothing calls this directly
no test coverage detected