testrail_list_tests_for_run
List EVERY test inside a TestRail run, walking all pages server-side so the caller never handles offsets. Returns each test with its T-id (test instance, e.g. T1234), C-id (underlying case_id — feed this to testrail_get_case), title, and status_id. Filter by statusIds (TestRail status: 1=passed, 2=blocked, 3=untested, 4=retest, 5=failed) to e.g. list only failed tests when triaging. Capped at 20 pages (5000 tests); check capReached before concluding a test is not in the run.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| runId | Yes | TestRail run id (R-number) | |
| statusIds | No | Optional status filter — e.g. [5] for failed only, [2,5] for blocked+failed |