This is my first post to this forum. I've searched it for "external id", but didn't find anything related to what I want to ask.
In the XML examples in the 1.9-rc1 documentation (tl-file-formats.pdf) I see this XML snippet:
Code: Select all
<testcase external_id="POL-1" >
<result>f</result>
<notes>functionality works great KIMI</notes>
</testcase>
Hopefully someone can shed some light on this.
Cheers,
Sybren
PS: This is the XML I used to create the test suite & case:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="">
<node_order></node_order>
<details></details>
<testsuite name="External ID test">
<node_order>1</node_order>
<details>Testing external ID</details>
<testcase name="EXID">
<node_order>100</node_order>
<externalid>EXID-1</externalid>
<summary>Test the external ID</summary>
<preconditions></preconditions>
<execution_type>2</execution_type>
<importance>2</importance>
<steps>
<step>
<step_number><![CDATA[1]]></step_number>
<actions><![CDATA[<p>Import the XML</p>]]></actions>
<expectedresults><![CDATA[<p>Suites and cases are created.</p>]]></expectedresults>
<execution_type><![CDATA[2]]></execution_type>
</step>
<step>
<step_number><![CDATA[2]]></step_number>
<actions><![CDATA[<p>Export the XML again</p>]]></actions>
<expectedresults><![CDATA[<p>The external ID "EXID-1" can be seen on this test case.</p>]]></expectedresults>
<execution_type><![CDATA[2]]></execution_type>
</step>
</steps>
</testcase>
</testsuite>
</testsuite>