Changes between Version 36 and Version 37 of TestCaseManagementPlugin


Ignore:
Timestamp:
Apr 13, 2007, 7:01:27 PM (17 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TestCaseManagementPlugin

    v36 v37  
    105105Inside the xml file you need to specify specifics about each testcase.  A test case has an Id (which probably should be the file name without any extensions), a component (matching a real component in your TRAC project..case sensitive), a summary, a description, and a field for describing the expected results of the test.
    106106
     107Here's what a testcase might look like...remember one testcase per file.  It helps if you give the file a name which reflects what the testcase is for.  For example:  map01_zoom.xml
     108
     109{{{
     110<testcase>
     111
     112  <id>
     113    map01_zoom.xml
     114  </id>
     115
     116  <component>
     117    map
     118  </component>
     119
     120  <summary>
     121    This test verifies correct functionaliy of zoom on the map. 
     122  </summary>
     123
     124  <description>
     125    Steps:
     126
     127    1.  Zoom around on the map.
     128
     129    2.  etc.  Note you can use TRAC formatting in the testcase if you want. 
     130  </description>
     131
     132  <expectedresult>
     133    The map should correctly zoom to the area specified by the user..etc.
     134  </expectedresult>
     135
     136</testcase>
     137
     138
     139}}}
     140
     141
    107142
    108143''''Step 2(Define any required grouping of testcases in the testtemplates.xml file):''''