Testopia:Documentation:XMLImport
Jump to navigation
Jump to search
Back to the Testopia Main Page
What's New!
| 2006-11-14 |
|
Know Issues
Getting Started
Testopia imports must be run from your Bugzilla home directory using tr_importxml.pl
Sample XML import files
Minimum for Test Plan and Test Case
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE testopia SYSTEM "testopia.dtd"> <testopia version="1.1">
<testplan author="youremail@company.com" type="System">
<name>Test Plan Name</name>
<product>testproduct</product>
<productversion>1.0</productversion>
<editor>editoremail@company.com</editor>
</testplan>
<testcase author="youremail@company.com">
<summary>Test Case Summary</summary>
<testplan_reference type="Xml_description">Test Plan Name</testplan_reference>
<requirement>Requirement Text</requirement>
<defaulttester>testeremail@company.com</defaulttester>
<action>Action HTML Text</action>
</testcase>
</testopia>
Back to the Testopia Main Page