Update Test generated examples
[civicrm-core.git] / api / v3 / examples / Country / Create.php
index a5a3472ea7604c1696e3b2d64b16f2ce4c2f6aa3..988b9bcfc9158c3b8a5ec4f29d5e9242623043d8 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Test Generated example of using country create API.
+ * Test Generated example demonstrating the Country.create API.
  *
  * @return array
  *   API result array
@@ -13,7 +13,7 @@ function country_create_example() {
   );
 
   try{
-    $result = civicrm_api3('country', 'create', $params);
+    $result = civicrm_api3('Country', 'create', $params);
   }
   catch (CiviCRM_API3_Exception $e) {
     // Handle error here.
@@ -21,7 +21,8 @@ function country_create_example() {
     $errorCode = $e->getErrorCode();
     $errorData = $e->getExtraParams();
     return array(
-      'error' => $errorMessage,
+      'is_error' => 1,
+      'error_message' => $errorMessage,
       'error_code' => $errorCode,
       'error_data' => $errorData,
     );
@@ -42,10 +43,10 @@ function country_create_expectedresult() {
     'is_error' => 0,
     'version' => 3,
     'count' => 1,
-    'id' => 1252,
+    'id' => 1254,
     'values' => array(
-      '1252' => array(
-        'id' => '1252',
+      '1254' => array(
+        'id' => '1254',
         'name' => 'Made Up Land',
         'iso_code' => 'ZZ',
         'country_code' => '',
@@ -61,11 +62,10 @@ function country_create_expectedresult() {
   return $expectedResult;
 }
 
-/**
+/*
 * This example has been generated from the API test suite.
-* The test that created it is called
-* testCreateCountry
-* and can be found in
+* The test that created it is called "testCreateCountry"
+* and can be found at:
 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/CountryTest.php
 *
 * You can see the outcome of the API tests at