Changes between Version 8 and Version 9 of TestManagerForTracPluginApi


Ignore:
Timestamp:
Oct 9, 2010, 3:11:50 PM (14 years ago)
Author:
Roberto Longobardi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TestManagerForTracPluginApi

    v8 v9  
    11= Test Manager for Trac Plugin - Public API =
    22
     3[[BR]]
     4The [wiki:TestManagerForTracPlugin TestManager plugin] can be used programmatically to create and manage Test Catalogs, Test Cases and Test Plans, and to set the test execution verdicts of Test Cases in a plan.
    35
    4 The TestManagerForTracPlugin plugin can be used programmatically to create, edit Test Catalogs, Test Cases and Test Plans, and to set the test execution verdicts of Test Cases in a plan.
     6There are two main APIs available:
     7
     8 * A RESTful API, allowing you to remotely control your test artifacts by means of simple HTTP GET requests,
     9 * A Python API, allowing for a fine-grained control over any artifact, managing their life-cycle, listening to events, reacting to status changes and workflow transitions.
     10
     11[[BR]]
     12[[BR]]
     13= The RESTful API =
    514
    615In the following, because of the spam filter not allowing more than a few URLs in a page, I have replaced:
     
    147156
    148157this will redirect to a Ticket edit page, with the Test Case in Test Plan hyperlink in the description (as Wiki page references). You can simply post the form to create the Ticket.
     158
     159[[BR]]
     160[[BR]]
     161= The Python API =
     162
     163TODO: To be described.