We need to create a report with traceability matrix between requirements and testcases. I know HPQC 11 has a specific function for it, but I have only HPQC 10.
Is there any way to create such a matrix in HPQC10?
PS: example of matrix: https://en.wikipedia.org/wiki/Traceability_matrix
You should be able to do it programmatically with the OTA API. For example you can start with a requirement and list all of the child requirements with the tests which cover them. Here is the example code in Ruby:
Output:
To get the requirements covered by a test case, use the function
GetCoverList()of the Test Object.This should give you all the data needed to create a traceability matrix.