Remove empty setUp() functions
authoreileen <emcnaughton@wikimedia.org>
Tue, 6 Apr 2021 01:45:08 +0000 (13:45 +1200)
committereileen <emcnaughton@wikimedia.org>
Tue, 6 Apr 2021 01:45:08 +0000 (13:45 +1200)
25 files changed:
tests/phpunit/CRM/Custom/Form/OptionTest.php
tests/phpunit/CRM/Custom/Page/AJAXTest.php
tests/phpunit/CRM/Event/Form/Registration/RegistrationTest.php
tests/phpunit/CRM/Extension/BrowserTest.php
tests/phpunit/CRM/Extension/Container/BasicTest.php
tests/phpunit/CRM/Extension/Container/CollectionTest.php
tests/phpunit/CRM/Extension/Container/StaticTest.php
tests/phpunit/CRM/Financial/BAO/FinancialItemTest.php
tests/phpunit/CRM/Financial/BAO/PaymentProcessorTest.php
tests/phpunit/CRM/Financial/BAO/PaymentProcessorTypeTest.php
tests/phpunit/CRM/Mailing/BAO/MailingTest.php
tests/phpunit/CRM/Mailing/BAO/QueryTest.php
tests/phpunit/CRM/Member/StatusOverrideTypesTest.php
tests/phpunit/CRM/UF/Page/ProfileEditorTest.php
tests/phpunit/CRM/Utils/AddressTest.php
tests/phpunit/CRM/Utils/Check/Component/EnvTest.php
tests/phpunit/CRM/Utils/Check/Component/OptionGroupsTest.php
tests/phpunit/CRM/Utils/HtmlToTextTest.php
tests/phpunit/CRM/Utils/RestTest.php
tests/phpunit/CRM/Utils/RuleTest.php
tests/phpunit/CRM/Utils/SignerTest.php
tests/phpunit/CRM/Utils/StringTest.php
tests/phpunit/CRM/Utils/SystemTest.php
tests/phpunit/CRM/Utils/TypeTest.php
tests/phpunit/Civi/API/Subscriber/WhitelistSubscriberTest.php

index 33f08c89a00f05a2e5734d68526820748ad5fb7a..6a490f196ec82c7f069bbdca91bf8287ab502837 100644 (file)
@@ -6,10 +6,6 @@
  */
 class CRM_Custom_Form_OptionTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   /**
    * Test the `name` field doesn't get changed when editing an existing option.
    */
index 35518957d8214ea2e01b8532bf80f60a8161fcf5..7735728debb9ef18ab3f866782dcbcd2554e1698 100644 (file)
  */
 class CRM_Custom_Page_AJAXTest extends CiviUnitTestCase {
 
-  /**
-   * Set up function.
-   */
-  public function setUp() {
-    parent::setUp();
-  }
-
   /**
    * Test multi-record custom fields
    */
index f48137d1c9d14efd84c85cd005c0a9e798576016..956a7f2b0fa5b1b3a06244c1d30946a729e3e391 100644 (file)
  */
 class CRM_Event_Form_Registration_RegistrationTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   /**
    * CRM-19626 - Test minimum value configured for priceset.
    */
index 7c25f65c5a8ad2932aea42c5197e2cb30a25dc7d..e826191eaff998470b17d04b4062722f1c51216c 100644 (file)
@@ -6,14 +6,6 @@
  */
 class CRM_Extension_BrowserTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
-  public function tearDown(): void {
-    parent::tearDown();
-  }
-
   public function testDisabled() {
     $browser = new CRM_Extension_Browser(FALSE, '/index.html', 'file:///itd/oesn/tmat/ter');
     $this->assertEquals(FALSE, $browser->isEnabled());
index fd911ed703d789c22d2dd63f79a1fe5a2f7f6d82..43cac07d3c717765fea7e10d150dc1be5e532195 100644 (file)
@@ -6,14 +6,6 @@
  */
 class CRM_Extension_Container_BasicTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
-  public function tearDown(): void {
-    parent::tearDown();
-  }
-
   public function testGetKeysEmpty() {
     $basedir = $this->createTempDir('ext-empty-');
     $c = new CRM_Extension_Container_Basic($basedir, 'http://example/basedir', NULL, NULL);
index bc9d419d434b8bd60c5f365b79f197e6ccd7cfcc..6849b279224fec01d85410ab2065b853fc6d9b7b 100644 (file)
  */
 class CRM_Extension_Container_CollectionTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
-  public function tearDown(): void {
-    parent::tearDown();
-  }
-
   public function testGetKeysEmpty() {
     $c = new CRM_Extension_Container_Collection([]);
     $this->assertEquals($c->getKeys(), []);
index 9e5f1209d854bb2dfea08b2b31b45e4ad5bd663f..d15e0b6f15544753e84df78ebbaaf550a9f53ade 100644 (file)
@@ -6,14 +6,6 @@
  */
 class CRM_Extension_Container_StaticTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
-  public function tearDown(): void {
-    parent::tearDown();
-  }
-
   public function testGetKeysEmpty() {
     $c = new CRM_Extension_Container_Static([]);
     $this->assertEquals($c->getKeys(), []);
index 0d016f900714e18dafc1cffbaaa6125d3a5595d9..9ce799be86cacd308ebfd7587f2358472ec97e66 100644 (file)
  */
 class CRM_Financial_BAO_FinancialItemTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   /**
    * Clean up after each test.
    */
index 7c92305122c5108ad9beed8c5137c993fc153046..6cea4c727df9b5bb7816a16ce2774ceed14cac95 100644 (file)
@@ -17,10 +17,6 @@ use Civi\Api4\PaymentProcessor;
  */
 class CRM_Financial_BAO_PaymentProcessorTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   /**
    * Check method create()
    */
index 255edeed2a7e98ed69a69f6a4d813b1f00848668..68b3e2be70e6f946af552cccf2d115b8a4461b1d 100644 (file)
  */
 class CRM_Financial_BAO_PaymentProcessorTypeTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   /**
    * Check method create()
    */
index 69b039002d77eaa298ebec632b8b5ce5c1bba4c0..eb4f87523949efc0f1aea4b517c39d43d6575c03 100644 (file)
@@ -16,10 +16,6 @@ class CRM_Mailing_BAO_MailingTest extends CiviUnitTestCase {
 
   protected $allowedContactId = 0;
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   public function tearDown(): void {
     global $dbLocale;
     if ($dbLocale) {
index 218753b795d541c75f5dc4845447472d14c5af04..a2b0a0f43eed3f7ca34afd7397a36d25cca72739 100644 (file)
@@ -13,10 +13,6 @@ class CRM_Mailing_BAO_QueryTest extends CiviUnitTestCase {
     return new CRM_Mailing_BAO_QueryTestDataProvider();
   }
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   public function tearDown(): void {
     $tablesToTruncate = [
       'civicrm_mailing_event_bounce',
index 78cf4651f9c79d73a4ca2393fabf782b6c26bbc1..59f6229671a09d563387c2448bd717a842ffaec0 100644 (file)
  */
 class CRM_Member_StatusOverrideTypesTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   public function testIsOverriddenReturnFalseForNoStatusOverrideType() {
     $statusOverrideTypes = new CRM_Member_StatusOverrideTypes();
     $isOverridden = $statusOverrideTypes::isOverridden(CRM_Member_StatusOverrideTypes::NO);
index 7ea035594e0d4d89fdd0c2eacfa270b9d8bd8f0a..a8525a6904ac8cef9b473a2513d92e6557b49b8e 100644 (file)
@@ -6,10 +6,6 @@
  */
 class CRM_UF_Page_ProfileEditorTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   /**
    * Spot check a few fields that should appear in schema.
    */
index 3ce0a367fc5676a7a14b5557a8bcf96d8e523cd2..0300616661ea40509d2839f020f30d199a32d93b 100644 (file)
@@ -6,10 +6,6 @@
  */
 class CRM_Utils_AddressTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   public function testAddressFormat() {
     $contact = $this->callAPISuccess('contact', 'create', [
       'first_name' => 'Micky',
index cb9a3201c3aa522a400d6a04aa7e316ebddea205..87b6e3a70df8a5105b6c3af0d9c227fce9027dba 100644 (file)
@@ -8,10 +8,6 @@
  */
 class CRM_Utils_Check_Component_EnvTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   /**
    * File check test should fail if reached maximum timeout.
    * @throws \GuzzleHttp\Exception\GuzzleException
index d85001504eb01065abaae41aad8264a20553cde1..b114d7edb4395f2fa2be34f95a3409142e90509b 100644 (file)
@@ -8,10 +8,6 @@
  */
 class CRM_Utils_Check_Component_OptionGroupsTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   public function testCheckOptionGroupValues() {
     $optionGroup = $this->callAPISuccess('OptionGroup', 'create', [
       'name' => 'testGroup',
index a4d2193fbf1bdbc892d55e5601ebd125e3f844ce..b7cef8c3d212cda94ccb2de0b37ac649e0f396ef 100644 (file)
@@ -6,10 +6,6 @@
  */
 class CRM_Utils_HtmlToTextTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   /**
    * @return array
    */
index 00c7d3f406bc89efdb143a987471122761268bb0..b2e5aab5e46e0f9bb059bd02fbdc0654ca9b6a02 100644 (file)
@@ -6,10 +6,6 @@
  */
 class CRM_Utils_RestTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   public function testProcessMultiple() {
     $_SERVER['REQUEST_METHOD'] = 'POST';
     $input = [
index afa6a753cc228718653e8cb263fc9994d90e42ed..daa71cd5e1770bea21088d5a9e8f78516c1027f6 100644 (file)
@@ -6,10 +6,6 @@
  */
 class CRM_Utils_RuleTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   /**
    * @dataProvider integerDataProvider
    * @param $inputData
index af730c9d386f7a3174259ead8b0d5d56b3ae896b..687139568a72f9e454ed6c23de0b1d8b4ab61660 100644 (file)
  */
 class CRM_Utils_SignerTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   public function testSignValidate() {
     $cases = [];
     $cases[] = [
index dcc461568cedc51230a8ecde396328524895045a..c9d46ab10892b34ddcc6df60639494570e88e5b8 100644 (file)
@@ -6,10 +6,6 @@
  */
 class CRM_Utils_StringTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   public function testBase64Url() {
     $examples = [
       'a' => 'YQ',
index f398c3d990bc92a13558d3ff22630a2c494d4de1..4bc73b4e5cac8852842ee6cd6d15907943dfab7e 100644 (file)
@@ -7,10 +7,6 @@
  */
 class CRM_Utils_SystemTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   public function testUrlQueryString() {
     $config = CRM_Core_Config::singleton();
     $this->assertTrue($config->userSystem instanceof CRM_Utils_System_UnitTests);
index 48fd76ee4df714ca200543dd885a5b28807bcd4e..4a95156cfff878775e3a1f0218237624afe57c4c 100644 (file)
@@ -8,10 +8,6 @@
  */
 class CRM_Utils_TypeTest extends CiviUnitTestCase {
 
-  public function setUp() {
-    parent::setUp();
-  }
-
   /**
    * @dataProvider validateDataProvider
    * @param $inputData
index 2ff64e595dbdac4a5d87b4b9de1029519487c7d9..768b8fe12a461bed32a20a28deaf8f5508cd85d0 100644 (file)
@@ -337,10 +337,6 @@ class WhitelistSubscriberTest extends \CiviUnitTestCase {
     return $c;
   }
 
-  protected function setUp() {
-    parent::setUp();
-  }
-
   /**
    * @param array $apiRequest
    *   Array(entity=>$,action=>$,params=>$,expectedResults=>$).