(self, client: OpenAI)
| 224 | |
| 225 | @parametrize |
| 226 | def test_method_list(self, client: OpenAI) -> None: |
| 227 | eval = client.evals.list() |
| 228 | assert_matches_type(SyncCursorPage[EvalListResponse], eval, path=["response"]) |
| 229 | |
| 230 | @parametrize |
| 231 | def test_method_list_with_all_params(self, client: OpenAI) -> None: |
nothing calls this directly
no test coverage detected