(self)
| 220 | |
| 221 | @pytest.mark.asyncio |
| 222 | async def test_invalid_json(self): |
| 223 | bridge, _ = _make_bridge() |
| 224 | resp = await bridge.handle_message("not json at all") |
| 225 | assert resp is None |
| 226 | |
| 227 | @pytest.mark.asyncio |
| 228 | async def test_tool_call_with_exception(self): |
nothing calls this directly
no test coverage detected