(self, tool_map, server_info_list)
| 1817 | |
| 1818 | class TestGetServerUrlForTool: |
| 1819 | def _proc_with_map(self, tool_map, server_info_list): |
| 1820 | context = DummyContext(tool_manager=DummyToolManager()) |
| 1821 | context.tool_to_server_map = tool_map |
| 1822 | context.server_info = server_info_list |
| 1823 | return _make_processor(context=context) |
| 1824 | |
| 1825 | def test_returns_none_without_map(self): |
| 1826 | context = DummyContext(tool_manager=DummyToolManager()) |
no test coverage detected