X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=tests%2Ftemplates%2FdocumentFunction.tpl;h=43293eeda32672b03f64a421c05c0e8b741834c1;hb=a733f50a96419749b5f5ebee962d7721164d36cf;hp=217bb6ff279d357311142aa4d79cdb59c9181cf5;hpb=03298d98322f2da05e2ab30cb0e2d5b90df47ab3;p=civicrm-core.git diff --git a/tests/templates/documentFunction.tpl b/tests/templates/documentFunction.tpl index 217bb6ff27..43293eeda3 100644 --- a/tests/templates/documentFunction.tpl +++ b/tests/templates/documentFunction.tpl @@ -1,42 +1,62 @@ {literal}getMessage(); - $errorCode = $e->getErrorCode(); - $errorData = $e->getExtraParams(); - return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData); -}{/literal} + try{{/literal} + $result = civicrm_api3('{$entity}', '{$action}', $params); +{literal} } + catch (CiviCRM_API3_Exception $e) { + // Handle error here. + $errorMessage = $e->getMessage(); + $errorCode = $e->getErrorCode(); + $errorData = $e->getExtraParams(); + return array( + 'error' => $errorMessage, + 'error_code' => $errorCode, + 'error_data' => $errorData, + ); + }{/literal} -return $result; + return $result; {literal}}{/literal} /** - * Function returns array of result expected from previous function + * Function returns array of result expected from previous function. + * + * @return array + * API result array */ -function {$function}_expectedresult(){literal}{{/literal} +function {$function}_expectedresult() {literal}{{/literal} $expectedResult = {$result|@print_array}; return $expectedResult; {literal}}{/literal} - /* -* This example has been generated from the API test suite. The test that created it is called -* -* {$testfunction} and can be found in -* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/{$filename} +* This example has been generated from the API test suite. +* The test that created it is called "{$testFunction}" +* and can be found at: +* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/{$testFile} * * You can see the outcome of the API tests at * https://test.civicrm.org/job/CiviCRM-master-git/ @@ -45,7 +65,7 @@ function {$function}_expectedresult(){literal}{{/literal} * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API * * Browse the api on your own site with the api explorer -* http://MYSITE.ORG/path/to/civicrm/api/explorer +* http://MYSITE.ORG/path/to/civicrm/api * * Read more about testing here * http://wiki.civicrm.org/confluence/display/CRM/Testing