tests/ - Remove pointless __construct() functions
authorTim Otten <totten@civicrm.org>
Mon, 22 Dec 2014 22:30:00 +0000 (14:30 -0800)
committerTim Otten <totten@civicrm.org>
Mon, 22 Dec 2014 22:30:00 +0000 (14:30 -0800)
tests/phpunit/api/v3/BatchTest.php
tests/phpunit/api/v3/CRM11793Test.php
tests/phpunit/api/v3/ConstantTest.php
tests/phpunit/api/v3/ContactTest.php
tests/phpunit/api/v3/DomainTest.php
tests/phpunit/api/v3/NoteTest.php
tests/phpunit/api/v3/SettingTest.php
tests/phpunit/api/v3/SystemTest.php

index ccda7e4e590e13ab5136e286559c983a54a05ae4..22f462ad7032612b2656558b4dae7c1416d3e542 100644 (file)
@@ -37,15 +37,6 @@ class api_v3_BatchTest extends CiviUnitTestCase {
   protected $_params = array();
   protected $_entity = 'batch';
 
-  /**
-   *  Constructor
-   *
-   *  Initialize configuration
-   */
-  function __construct() {
-    parent::__construct();
-  }
-
   /**
    * Sets up the fixture, for example, opens a network connection.
    * This method is called before a test is executed.
index fa997b2711a6b62ed4ec89af1dc856b5002e2616..c8a022ce148ad9d834d222c5e568822718be01bb 100644 (file)
@@ -12,14 +12,6 @@ require_once 'CiviTest/CiviUnitTestCase.php';
  *  @package   CiviCRM
  */
 class api_v3_CRM11793Test extends CiviUnitTestCase {
-  /**
-   *  Constructor
-   *
-   *  Initialize configuration
-   */
-  function __construct() {
-    parent::__construct();
-  }
 
   /**
    *  Test setup for every test
index 4ec1da8e700189cee77f8f9fd8f3266ab4ed9c6f..07b23983ee2db746c81c7fefb36bf9d9bd51a8d5 100644 (file)
@@ -43,15 +43,6 @@ require_once 'CiviTest/CiviUnitTestCase.php';
 class api_v3_ConstantTest extends CiviUnitTestCase {
   protected $_apiversion = 3;
 
-
-  /**
-   *  Constructor
-   *
-   *  Initialize configuration
-   */ function __construct() {
-    parent::__construct();
-  }
-
   /**
    *  Test setup for every test
    *
index d051c59aac96fa06f85852274f5a1b0356fab2f5..1b6758dd5518dda00c682e50231dd6935b6b31a6 100644 (file)
@@ -50,15 +50,6 @@ class api_v3_ContactTest extends CiviUnitTestCase {
   protected $_contactID;
   protected $_financialTypeId =1;
 
-  /**
-   *  Constructor
-   *
-   *  Initialize configuration
-   */
-  function __construct() {
-    parent::__construct();
-  }
-
   /**
    *  Test setup for every test
    *
index e7eed9e3ab92fe3d220450bcfa19e04d7492efaf..4eb428a3100685a4e89122e923fe56335136df9b 100644 (file)
@@ -45,15 +45,6 @@ class api_v3_DomainTest extends CiviUnitTestCase {
   protected $_apiversion = 3;
   protected $params;
 
-
-  /**
-   *  Constructor
-   *
-   *  Initialize configuration
-   */ function __construct() {
-    parent::__construct();
-  }
-
   /**
    * Sets up the fixture, for example, opens a network connection.
    * This method is called before a test is executed.
index 65ccfad0b7910536f1c0aa195d0f863799e7eddd..4310d0626f5c4360ce7068b7af2790bfcd108954 100644 (file)
@@ -39,14 +39,6 @@ class api_v3_NoteTest extends CiviUnitTestCase {
   protected $_noteID;
   protected $_note;
 
-
-  /**
-   *
-   */
-  function __construct() {
-    parent::__construct();
-  }
-
   function setUp() {
 
     $this->_apiversion = 3;
index b395cbbe56a306079074474a5e5cd37fbb69112d..2f5ca191e48b1fdea00b1f28f35412d6f62e2da9 100644 (file)
@@ -48,14 +48,6 @@ class api_v3_SettingTest extends CiviUnitTestCase {
   protected $_domainID2;
   protected $_domainID3;
 
-  /**
-   *
-   */
-  function __construct() {
-    parent::__construct();
-
-  }
-
   function setUp() {
     parent::setUp();
     $params = array(
index 4ebef06637e972f3c070cf7bc95bd7cfa88e4d81..874dcfd5554b6422f954f735cba9ab4ddafcb206 100644 (file)
@@ -37,15 +37,6 @@ class api_v3_SystemTest extends CiviUnitTestCase {
   const TEST_CACHE_GROUP = 'SystemTest';
   const TEST_CACHE_PATH = 'api/v3/system';
 
-  /**
-   *  Constructor
-   *
-   *  Initialize configuration
-   */
-  function __construct() {
-    parent::__construct();
-  }
-
   /**
    * Sets up the fixture, for example, opens a network connection.
    * This method is called before a test is executed.