Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to list all the test cases from all the test plans for a fixVersion?

Cyril March 12, 2025

Hello,

I have to have the list of all the test cases from a test plan for a dedicated fixVersion.

Example:

TestCase A / B /C are in TestPlan 1 for FixVersion=10

TestCase D / E are in TestPlan 2 for FixVersion=11

TestCase F / G are in TestPlan 3 for FixVersion=10

How to have the list of test case from FixVersion 10 by test plan in JQL ?

Thanks.

1 answer

1 accepted

1 vote
Answer accepted
Florian Bonniec
Community Champion
March 14, 2025

Hi @Cyril 

 

You could save a filter that looks like: type = "Test Plan" and fixVersion in (10) (eg: V10TestPlan)

Then use 

issue in testPlanTests("V10TestPlan") and type = Test

 

Regards

 

Cyril March 14, 2025

Thanks @Florian, so it means that we need to put manually the name of the test plan using testPlanTests(), it is not possible to have something like testPlanTests('"*") ?

Florian Bonniec
Community Champion
March 14, 2025

V10TestPlan is a filter name you saved so you define the query that returned the Test Plans you are interested in.

Cyril March 14, 2025

OK, I have the list of test plan for a fix version.

How can I have the list of test cases in the test plans using the 'rich filter controler' ? I try to add 'smart view' but without success.

Thanks.

Florian Bonniec
Community Champion
March 14, 2025

I do not think you can using the Rich Filter Controller, because the data is not in the issue itself so it will not be returned.

 

Regards

Suggest an answer

Log in or Sign up to answer