Importing test cases into Rational Quality Manager

You can import test cases that are saved as local XML files directly into Rational® Quality Manager, where they are then visible in the View Test Cases page.

Before you begin

Ensure that the local XML file to import adheres to the Rational Quality Manager XML Schema Documentation in step 4.

About this task

To import a test case from a local XML file:

Procedure

  1. Point to Construction (Construction), and click Import Test Cases.
  2. Select Import from a local XML file, and click Browse.
  3. Locate the file, and click Open.
  4. Click Import to import the test case into Rational Quality Manager.
    Tip: For more information on the import format and content model elements for test case XML files, see the test plan XML Schema Documentation for Rational Quality Manager.

    See the following example for a basic test case XML file that adheres to the Rational Quality Manager schema:

    <?xml version="1.0"?>
    <testcase xmlns="http://jazz.net/xmlns/alm/qm/v0.1/">
    	<title xmlns="http://purl.org/dc/elements/1.1/">New Customer Order Test Case</title>
    	<description xmlns="http://purl.org/dc/elements/1.1/">Test the ordering
    	functionality of the Classics Java application.>
    	<updated xmlns="http://jazz.net/xmlns/alm/v0.1/">2008-08-23T01:00:21.437Z</updated>
    	<state xmlns="http://jazz.net/xmlns/alm/v0.1/">com.ibm.rqm.planning.common.new</state>
    	<creator xmlns="http://purl.org/dc/elements/1.1/">mary</creator>
    	<owner xmlns="http://jazz.net/xmlns/alm/v0.1/">unassigned</owner>
    	<regressionTest>false</regressionTest>
    	<weight>20</weight>
    	<category term="Category" value="Web UI"/>
    	<category term="Function" value="Execution"/>
    	<category term="Theme" value="Functionality"/>
    </testcase>

Feedback