lczub / TestLink-API-Python-client

A Python client to use the TestLink API
105 stars 63 forks source link

implement 1.9.13 new api - unassignTestCaseExecutionTask #32

Closed lczub closed 9 years ago

lczub commented 9 years ago

future TL release 1.9.13 will introduce a new api method unassignTestCaseExecutionTask().

current know arguments are (TL gitorious commit 78d4f7f):

/**
    * @param struct $args
    * @param string $args["devKey"]
    * @param int $args["testplanid"]
    * @param string $args["testcaseexternalid"] format PREFIX-NUMBER
    * @param int $args["buildid"] Mandatory => you can provide buildname as alternative
    * @param int $args["buildname"] Mandatory => you can provide buildid (DB ID) as alternative
    * @param int $args["platformid"] optional - BECOMES MANDATORY if Test plan has platforms
    *                                           you can provide platformname as alternative  
    *  
    * @param int $args["platformname"] optional - BECOMES MANDATORY if Test plan has platforms
    *                                           you can provide platformid as alternative  
    * @param string $args["user'] - login name => tester 
    *                             - NOT NEEDED f $args['action'] = 'unassignAll'
    *
    */
  public function unassignTestCaseExecutionTask($args)
lczub commented 9 years ago

related TL Mantis Task

lczub commented 9 years ago

fixed with f542a17