(agent_runner: TestRunner)
| 183 | indirect=True, |
| 184 | ) |
| 185 | def test_rag_retrieval_success(agent_runner: TestRunner): |
| 186 | _call_function_and_assert( |
| 187 | agent_runner, |
| 188 | "valid_rag_retrieval", |
| 189 | "What is the testing strategy of agent 2.0?", |
| 190 | "test", |
| 191 | ) |
| 192 | _call_function_and_assert( |
| 193 | agent_runner, |
| 194 | "valid_rag_retrieval", |
| 195 | "What is the whether in bay area?", |
| 196 | "No", |
| 197 | ) |
| 198 | |
| 199 | |
| 200 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected