Returns

Returns a list of TestCase objects for the given test.

Example

# List all test cases for a test
test_cases = galtea.test_cases.list(test_id="YOUR_TEST_ID")

# List with pagination
paginated_test_cases = galtea.test_cases.list(test_id="YOUR_TEST_ID", offset=10, limit=5)

Parameters

test_id
string
required
The ID of the test you want to get the test cases from.
offset
int
The number of test cases to skip before starting to collect the result set.
limit
int
The maximum number of test cases to return.