I'm trying to put together a JQL query within my Test Case Management project in X-Ray, but so far to no avail:
This is my scenario:
I have a Test Set, ABC-100
, with some Tests, ABC-101
to ABC-110
.
I also have some test executions, ABC-120
, and ABC-121
, with different selections of tests between the ones mentioned before.
I need a query that, given a Test Set identifier, returns the Test Executions 'related' in some way to that Test Set (e.g., containing some of the Tests that are inside of that Test Set).
So far, I have found:
key in TestSetTests("ABC-100")
, returns the Tests in the Test Set.key in TestExecutionsTests("ABC-120")
returns the Tests in the Test Execution.key in testTestExecutions("ABC-105")
returns the Test Executions that contain that Test.key in testTestExecutions("ABC-100")
returns an error for ABC-100 is not a Test, but a Test Set. This would be the output I would be hoping for.
Can anyone help me out on this?
Thank you in advance