--- /dev/null
+<?php
+
+/*
+ +--------------------------------------------------------------------+
+ | Copyright CiviCRM LLC. All rights reserved. |
+ | |
+ | 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 |
+ +--------------------------------------------------------------------+
+ */
+
+/**
+ *
+ * @package CRM
+ * @copyright CiviCRM LLC https://civicrm.org/licensing
+ * $Id$
+ *
+ */
+
+namespace Civi\Api4;
+
+/**
+ * Country entity.
+ *
+ * @package Civi\Api4
+ */
+class Country extends Generic\DAOEntity {
+
+}
--- /dev/null
+<?php
+
+/*
+ +--------------------------------------------------------------------+
+ | Copyright CiviCRM LLC. All rights reserved. |
+ | |
+ | 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 |
+ +--------------------------------------------------------------------+
+ */
+
+/**
+ *
+ * @package CRM
+ * @copyright CiviCRM LLC https://civicrm.org/licensing
+ * $Id$
+ *
+ */
+
+namespace Civi\Api4;
+
+/**
+ * StateProvince entity.
+ *
+ * @package Civi\Api4
+ */
+class StateProvince extends Generic\DAOEntity {
+
+}
* @group headless
*/
class api_v3_CountryTest extends CiviUnitTestCase {
- protected $_apiversion;
protected $_params;
public function setUp() {
- $this->_apiversion = 3;
parent::setUp();
$this->useTransaction(TRUE);
$this->_params = [
];
}
+ /**
+ * @dataProvider versionThreeAndFour
+ */
public function testCreateCountry() {
$result = $this->callAPIAndDocument('country', 'create', $this->_params, __FUNCTION__, __FILE__);
$this->callAPISuccess('country', 'delete', ['id' => $result['id']]);
}
+ /**
+ * @dataProvider versionThreeAndFour
+ */
public function testDeleteCountry() {
//create one
$create = $this->callAPISuccess('country', 'create', $this->_params);
/**
* Test civicrm_phone_get with empty params.
+ * @dataProvider versionThreeAndFour
*/
public function testGetEmptyParams() {
$result = $this->callAPISuccess('Country', 'Get', []);
/**
* Test civicrm_phone_get with wrong params.
+ * @dataProvider versionThreeAndFour
*/
public function testGetWrongParams() {
$this->callAPIFailure('Country', 'Get', ['id' => 'abc']);
/**
* Test civicrm_phone_get - success expected.
+ * @dataProvider versionThreeAndFour
*/
public function testGet() {
$country = $this->callAPISuccess('Country', 'create', $this->_params);
/**
* If a new country is created and it is created again it should not create a second one.
* We check on the iso code (there should be only one iso code
+ * @dataProvider versionThreeAndFour
*/
public function testCreateDuplicateFail() {
$params = $this->_params;
* @group headless
*/
class api_v3_StateProvinceTest extends CiviUnitTestCase {
- protected $_apiversion;
protected $_params;
public function setUp() {
- $this->_apiversion = 3;
parent::setUp();
$this->useTransaction(TRUE);
$this->_params = [
];
}
+ /**
+ * @dataProvider versionThreeAndFour
+ */
public function testCreateStateProvince() {
$result = $this->callAPIAndDocument('StateProvince', 'create', $this->_params, __FUNCTION__, __FILE__);
$this->assertEquals(1, $result['count']);
$this->callAPISuccess('StateProvince', 'delete', ['id' => $result['id']]);
}
+ /**
+ * @dataProvider versionThreeAndFour
+ */
public function testDeleteStateProvince() {
// Create
$create = $this->callAPISuccess('StateProvince', 'create', $this->_params);
/**
* Test with empty params
+ * @dataProvider versionThreeAndFour
*/
public function testGetEmptyParams() {
$result = $this->callAPISuccess('StateProvince', 'Get', []);
/**
* Test with wrong params
+ * @dataProvider versionThreeAndFour
*/
public function testGetWrongParams() {
$this->callAPIFailure('StateProvince', 'Get', ['id' => 'abc']);
/**
* Test get
+ * @dataProvider versionThreeAndFour
*/
public function testGet() {
$province = $this->callAPISuccess('StateProvince', 'create', $this->_params);
/**
* There cannot be two state/provinces with the same name in the same country.
+ * @dataProvider versionThreeAndFour
*/
public function testCreateDuplicateFail() {
$params = $this->_params;