(agent_runner: TestRunner)
| 121 | indirect=True, |
| 122 | ) |
| 123 | def test_function_calls_fail(agent_runner: TestRunner): |
| 124 | _call_function_and_assert( |
| 125 | agent_runner, |
| 126 | "throw_error_function", |
| 127 | "test", |
| 128 | None, |
| 129 | ValueError, |
| 130 | ) |
| 131 | |
| 132 | |
| 133 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected