(self, method: str, params: Mapping[str, Any] | None, opts: Any = None)
| 186 | raise NotImplementedError |
| 187 | |
| 188 | async def notify(self, method: str, params: Mapping[str, Any] | None, opts: Any = None) -> None: |
| 189 | sent.append((method, params)) |
| 190 | |
| 191 | await ClientPeer(_Out()).notify("n", {"x": 1}) |
| 192 | assert sent == [("n", {"x": 1})] |
no outgoing calls
no test coverage detected