I'd like to know if there's a way to check if some tests in XRay haven't been added to any Test set. As is, the only way I've managed to compare if there are any tests missing from our tests sets, has been by calculating the total number of tests in Test executions which have been created from the Test sets and comparing that to the number of Tests we have in the XRay library/repo.
It would be really helpful if I could, e.g., add 'Test set/Test plan/Test execution' columns to the JQL search table to easily search for tests where the value is EMPTY.
I think you can use the one from @Volodymyr Melnik or use issue in testsWithNoTestSet()
See Xray JQL options, Enhanced+Querying+with+JQL
As far as I know, you can use the NOT IN testSetTests() Xray function:
issueType = Test AND key NOT IN testSetTests()
And this query will return all Tests that are not associated with any Test Set.
Jira’s issue navigator doesn’t support displaying Test Set, Test Plan, or Test Execution as columns by default. You can work around this by using Xray-specific reports or exporting data via CSV and doing analysis outside Jira, depending on your needs.
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.