All our tests (>4000) are stored in one project, for historical reasons. We have keywords on Testcases (application, platform, etc.)
I want to split this bis project project into several smaller projects, for each application.
I found a method, but links between requirements and testscases are lost
------
So, i create one testplan by application, by filtering testcases with keywords, and i export the testplan
Exported testplan cannot be imported as testsuite unless you modify the exported XML :
Open the testplan.XML and
1- at the beginning of the file, replace
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<testplan>
<name><![CDATA[testplan_name]]></name>
<testproject> <name><![CDATA[Projects]]></name> <internal_id><![CDATA[25695]]></internal_id>
</testproject>
<build> <name><![CDATA[1]]></name> <internal_id><![CDATA[23]]></internal_id>
</build>
<testsuites>"
by
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="testcases">
replace
Code: Select all
</testsuite></testsuites>
</testplan>
Code: Select all
</testsuite></testsuite>
Create a new project, go to "test specification" and "import"
----
Another idea (especially for testcases-requirements links ) ?
Regards,