lczub / TestLink-API-Python-client

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

implement 1.9.12 new api - getTestCaseAssignedTester #29

Closed lczub closed 9 years ago

lczub commented 9 years ago

future TL release 1.9.12 will introduce a new api method getTestCaseAssignedTester(). It gets the result of LAST EXECUTION for a particular testcase on a test plan.

current know arguments are (TL gitorious commit 9ca61c8):

  /**
   * Gets the result of LAST EXECUTION for a particular testcase on a test plan.
   * If there are no filter criteria regarding platform and build,
   * result will be get WITHOUT checking for a particular platform and build.
   *
   * @param struct $args
   * @param string $args["devKey"]
   * @param int $args["tplanid"]
   * @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  
   *
   *
   * @return mixed $resultInfo
   *
   * @access public
   */
  public function getTestCaseAssignedTester($args)