(self, server: Any)
| 12 | """In-process MCP test client using FastMCP's client-with-server pattern.""" |
| 13 | |
| 14 | def __init__(self, server: Any) -> None: |
| 15 | self._server = server |
| 16 | self._client: Any = None |
| 17 | |
| 18 | async def __aenter__(self) -> MCPTestClient: |
| 19 | from fastmcp import ( |
nothing calls this directly
no outgoing calls
no test coverage detected