Add in Country and StateProvince APIv4 Entities
[civicrm-core.git] / tests / phpunit / api / v3 / BatchTest.php
index dc2dc31bb1fcc53627de18093b67015cfa98c56f..1fe43765849f85378c181ec1b5ce4795270f7838 100644 (file)
@@ -1,27 +1,11 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 5                                                  |
- +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2019                                |
- +--------------------------------------------------------------------+
- | This file is a part of CiviCRM.                                    |
- |                                                                    |
- | CiviCRM is free software; you can copy, modify, and distribute it  |
- | under the terms of the GNU Affero General Public License           |
- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
- |                                                                    |
- | CiviCRM is distributed in the hope that it will be useful, but     |
- | WITHOUT ANY WARRANTY; without even the implied warranty of         |
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
- | See the GNU Affero General Public License for more details.        |
+ | Copyright CiviCRM LLC. All rights reserved.                        |
  |                                                                    |
- | You should have received a copy of the GNU Affero General Public   |
- | License and the CiviCRM Licensing Exception along                  |
- | with this program; if not, contact CiviCRM LLC                     |
- | at info[AT]civicrm[DOT]org. If you have questions about the        |
- | GNU Affero General Public License or the licensing of CiviCRM,     |
- | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
+ | This work is published under the GNU AGPLv3 license with some      |
+ | permitted exceptions and without any warranty. For full license    |
+ | and copyright information, see https://civicrm.org/licensing       |
  +--------------------------------------------------------------------+
  */
 
@@ -33,7 +17,7 @@
  */
 class api_v3_BatchTest extends CiviUnitTestCase {
 
-  protected $_params = array();
+  protected $_params = [];
   protected $_entity = 'batch';
 
   /**
@@ -50,9 +34,9 @@ class api_v3_BatchTest extends CiviUnitTestCase {
    * Test civicrm_batch_get - success expected.
    */
   public function testGet() {
-    $params = array(
+    $params = [
       'id' => $this->batchCreate(),
-    );
+    ];
     $result = $this->callAPIAndDocument('batch', 'get', $params, __FUNCTION__, __FILE__);
     $this->assertEquals($params['id'], $result['id']);
   }
@@ -61,14 +45,14 @@ class api_v3_BatchTest extends CiviUnitTestCase {
    * Test civicrm_batch_create - success expected.
    */
   public function testCreate() {
-    $params = array(
+    $params = [
       'name' => 'New_Batch_03',
       'title' => 'New Batch 03',
       'description' => 'This is description for New Batch 03',
       'total' => '300.33',
       'item_count' => 3,
       'status_id' => 1,
-    );
+    ];
 
     $result = $this->callAPIAndDocument('batch', 'create', $params, __FUNCTION__, __FILE__);
     $this->assertNotNull($result['id']);
@@ -79,14 +63,14 @@ class api_v3_BatchTest extends CiviUnitTestCase {
    * Test civicrm_batch_create with id.
    */
   public function testUpdate() {
-    $params = array(
+    $params = [
       'name' => 'New_Batch_04',
       'title' => 'New Batch 04',
       'description' => 'This is description for New Batch 04',
       'total' => '400.44',
       'item_count' => 4,
       'id' => $this->batchCreate(),
-    );
+    ];
 
     $result = $this->callAPIAndDocument('batch', 'create', $params, __FUNCTION__, __FILE__);
     $this->assertNotNull($result['id']);
@@ -98,9 +82,9 @@ class api_v3_BatchTest extends CiviUnitTestCase {
    */
   public function testBatchDeleteOldSyntax() {
     $batchID = $this->batchCreate();
-    $params = array(
+    $params = [
       'batch_id' => $batchID,
-    );
+    ];
     $result = $this->callAPISuccess('batch', 'delete', $params);
   }
 
@@ -109,9 +93,9 @@ class api_v3_BatchTest extends CiviUnitTestCase {
    */
   public function testBatchDeleteCorrectSyntax() {
     $batchID = $this->batchCreate();
-    $params = array(
+    $params = [
       'id' => $batchID,
-    );
+    ];
     $result = $this->callAPIAndDocument('batch', 'delete', $params, __FUNCTION__, __FILE__);
   }