Test Coverage of Requirements
Hi,
Need some assistance in creating a Dashboard that will list the % value of Requirements (Story) covered by Test Cases.
I have created three Filters:
1 - To list all stories within the Project that have and dont have test coverage.
project = "ABC" and issuetype = Story and ( issue in hasTestCoverage() or issue not in hasTestCoverage())
2 - To list all stories within the Project that have test coverage.
project = "ABC" and issuetype = Story and issue in hasTestCoverage()
3 - To list all stories within the Project that dont have test coverage.
project = "ABC" and issuetype = Story and issue not in hasTestCoverage()
I would like to create a Graph on the Dashboard that will display the percentage value of the Requirements with Test Coverage and percentage value of the Requirements without Test Coverage.
Could you assist with the same.
Thanks in advance.