Test with empty call list.
()
| 44 | |
| 45 | @pytest.mark.asyncio |
| 46 | async def test_execute_tools_parallel_empty_calls(): |
| 47 | """Test with empty call list.""" |
| 48 | manager = MockToolManager() |
| 49 | results = await execute_tools_parallel(manager, []) |
| 50 | assert results == [] |
| 51 | |
| 52 | |
| 53 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected