How to create a new Test Plan and link some existing test cases using RQM Excel Importer?
cfg file as below, the test plan is created, but test case not linked:
testplan.XLSWorksheetID="Template"
testplan.XLSStartRow=2
testplan.XLSArtifactID=A2
testplan.dc:title=A2
testplan.dc:description=B2
testplan.jzalm:state=E2
testplan.testcase=LinkExisting("urn:com.ibm.rqm:testcase:"&D2)
|
2 answers
indicates a reference to the master test artifacts, content is the external/internal id or the excel cell/column that stores the external/internal id of the master artifact on ETM server.
i.e. testplan links with testcase, then test plan is master artifact and testcase is sub/child artifact.
testcase.testplan=LinkExisting("testplanid"), testplanid1 is the external/internal id of the test plan on ETM server.
So in your case, you want to link a new testplan to the existing testcases for which keyword LinkExisting() won't apply.
You would need to use keyword Link() instead. Please try
testplan.testcase=Link("urn:com.ibm.rqm:testcase:"&D2)
Hope this helps.
|
Referring to https://jazz.net/wiki/bin/view/Main/RQMExcelWordImporter#LinkExisting uno online indicates a reference to the master test artifacts, content is the external/internal id or the excel cell/column that stores the external/internal id of the master artifact on ETM server. i.e. testplan links with testcase, then test plan is master artifact and testcase is sub/child artifact.
Great! This solution works for me. Thanks, bro!
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.