0

我知道我们将分别完成任务,然后我们需要再次将每个需求与测试用例联系起来。是否有任何宏或捷径可用于一次性将需求及其相应的测试用例从 excel 导出到 QC。请提供

4

2 回答 2

1

我使用了以下查询并且它有效:

select rc.RC_REQ_ID, r.rq_req_name, rc.RC_ENTITY_ID, t.ts_name, t.ts_description, t.ts_user_01
from TEST t, REQ r, REQ_COVER rc
where rc.RC_REQ_ID = r.rq_req_id
and rc.RC_ENTITY_ID = t.ts_test_id
于 2014-01-06T06:38:25.377 回答
1

可以通过在 QC 中运行 excel 查询来检索需求和相应的测试用例。下面的查询做到了,您可以导出结果

有关如何到达此查询的更多详细信息,请参阅以下链接 http://qtp-automate.blogspot.co.uk/2010/05/how-to-retrieve-requirement-test-case.html

选择 r.rq_req_name, t.TS_NAME,ln_bug_id from TEST t, REQ r, REQ_COVER rc, TESTCYCL tc, LINK l 其中 rq_req_id = rc_req_id and rc_entity_id = ts_test_id and rc_entity_type = 'TEST' and t.ts_test_id = tc.tc_test_id and l。 ln_entity_type = 'TESTCYCL' 和 Tc.TC_TESTCYCL_ID = l.ln_entity_id

于 2013-08-28T12:02:48.637 回答