Add in Country and StateProvince APIv4 Entities
[civicrm-core.git] / tests / phpunit / api / v3 / GroupOrganizationTest.php
index 4006a5c6ab2ff42b33a9fd5ab7c7fd1c1c5069e3..4ed4ed9f0ca043b6280825634bdc941ac67eec3f 100644 (file)
@@ -83,17 +83,6 @@ class api_v3_GroupOrganizationTest extends CiviUnitTestCase {
     $this->assertAPISuccess($result);
   }
 
-  /**
-   * Test civicrm_group_organization_get with wrong params.
-   *
-   * @dataProvider versionThreeAndFour
-   */
-  public function testGroupOrganizationGetWithWrongParams() {
-    $params = 'groupOrg';
-    $result = $this->callAPIFailure('group_organization', 'get', $params);
-    $this->assertEquals($result['error_message'], 'Input variable `params` is not an array');
-  }
-
   /**
    * Test civicrm_group_organization_get invalid keys.
    *
@@ -149,17 +138,6 @@ class api_v3_GroupOrganizationTest extends CiviUnitTestCase {
     $this->assertEquals($result['error_message'], 'Mandatory key(s) missing from params array: group_id, organization_id');
   }
 
-  /**
-   * Check with invalid params.
-   *
-   * @dataProvider versionThreeAndFour
-   */
-  public function testGroupOrganizationCreateParamsNotArray() {
-    $params = 'group_org';
-    $result = $this->callAPIFailure('group_organization', 'create', $params);
-    $this->assertEquals($result['error_message'], 'Input variable `params` is not an array');
-  }
-
   /**
    * Check with invalid params keys.
    *
@@ -175,17 +153,6 @@ class api_v3_GroupOrganizationTest extends CiviUnitTestCase {
 
   ///////////////// civicrm_group_organization_remove methods
 
-  /**
-   * Test civicrm_group_organization_remove with params not an array.
-   *
-   * @dataProvider versionThreeAndFour
-   */
-  public function testGroupOrganizationDeleteParamsNotArray() {
-    $params = 'delete';
-    $result = $this->callAPIFailure('group_organization', 'delete', $params);
-    $this->assertEquals($result['error_message'], 'Input variable `params` is not an array');
-  }
-
   /**
    * Test civicrm_group_organization_remove with empty params.
    *