我们需要创建一个包含需求和测试用例之间的可跟踪矩阵的报告。我知道HPQC 11有一个特定的功能,但我只有HPQC 10。
是否有办法在HPQC10中创建这样的矩阵?
PS:矩阵示例:https://en.wikipedia.org/wiki/Traceability_matrix
您应该能够使用OTA API以编程方式完成此操作。例如,您可以从一个需求开始,列出所有子需求以及涵盖它们的测试。下面是Ruby的示例代码:
reqs = req_factory.GetChildrenList(94) # get the start-requirement by id
reqs.each do |req|
tests = req.GetCoverList
puts "#{req.Name} is covered by #{tests.Count} tests:"
tests.each { |test| puts "#{test.Name}" }
end
输出:Req A is covered by 3 tests:
Test A
Test B
Test C
Req B is covered by 2 tests:
Test X
Test Y
要获得测试用例所涵盖的需求,请使用测试对象的GetCoverList()
函数。
这将为您提供创建跟踪矩阵所需的所有数据。