Link Existing Requirenment
![]()
Hi,
I am trying to link existing requirements using excel.
I have already created requirements and trying to link them to a test case using excel utility.
I have created some test cases in excel and trying to link them with existing requirement using excel. Below is the test script i have used in order to create a test case:// This configuration file creates a test case with each test script and links them.
testscript.XLSStartRow=2
// use the data in the first row of a found script's column B
testscript.XLSArtifactID=K
testscript.category term="Unique ID".value=K
testscript.dc:title=L
testscript.dc:description=M
testscript.category term="Function".value=N
testscript.category term="Test Type".value=O
testscript.category term="Owner".value=P
testscript.category term="Priority".value=Q
testscript.category term="Complexity".value=R
// the literal "execution" will be put into the step type tag, so all steps will be of type execution
testscript.steps.type="execution"
testscript.steps.title=S
testscript.steps.name=S
testscript.steps.description=T
testscript.steps.expectedResult=U
// a new script starts when we encounter an empty row
testscript.XLSDelimeter=\n
// we want to use the data we got for each test script to create a test case
testcase.XLSStartRow=2
testcase.XLSArtifactID=B
testcase.dc:title=C
testcase.dc:description=D
testcase.category term="Test Case Priority".value=E
testcase.category term="Business Complexity".value=F
testcase.category term="Test Process".value=H
testcase.category term="Test Sub-Process".value=I
testcase.category term="Test Type".value=J
testcase.testscript=Link(ZZ)
testcase.XLSLink=testscript
Please look and let me know my mistakes.
Thanks
|