[NFC] Add in voids to various setUpBeforeClass and tearDownAfterClass functions
authorSeamus Lee <seamuslee001@gmail.com>
Thu, 20 May 2021 08:25:18 +0000 (18:25 +1000)
committerSeamus Lee <seamuslee001@gmail.com>
Thu, 20 May 2021 08:25:50 +0000 (18:25 +1000)
ext/afform/mock/tests/phpunit/api/v4/AfformRoutingTest.php
ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunTest.php
tests/phpunit/CRM/Utils/QueryFormatterTest.php
tests/phpunit/Civi/Test/ExampleTransactionalTest.php
tests/phpunit/CiviTest/CiviEndToEndTestCase.php
tests/phpunit/CiviTest/CiviUnitTestCase.php
tests/phpunit/E2E/Cache/CacheTestCase.php
tests/phpunit/api/v3/ContributionPageTest.php
tests/phpunit/api/v3/PriceSetTest.php

index 5d310b7c2f2dd501f561a7c168f9b94c1c976863..00eb9ef4019b2be8ee491d17d9bd2ecd83d24934 100644 (file)
@@ -8,7 +8,7 @@ class api_v4_AfformRoutingTest extends \PHPUnit\Framework\TestCase implements \C
 
   protected $formName = 'mockPage';
 
-  public static function setUpBeforeClass() {
+  public static function setUpBeforeClass(): void {
     \Civi\Test::e2e()
       ->install(['org.civicrm.afform', 'org.civicrm.afform-mock'])
       ->apply();
index c1c2c2e19f90d32b53b0e1374f495699910232b0..5264f9e33c2c72dec601f3ef2a1703b5d3d42f3d 100644 (file)
@@ -22,14 +22,6 @@ class SearchRunTest extends \PHPUnit\Framework\TestCase implements HeadlessInter
       ->apply();
   }
 
-  public function setUp() {
-    parent::setUp();
-  }
-
-  public function tearDown() {
-    parent::tearDown();
-  }
-
   /**
    * Test running a searchDisplay with various filters.
    */
index de557c933e8910091af695ff3e3bdccea0ca4bc6..96efb14ac6a09e51555b46584d61f5f70955a3e4 100644 (file)
@@ -43,7 +43,7 @@ class CRM_Utils_QueryFormatterTest extends CiviUnitTestCase {
     }
   }
 
-  public static function tearDownAfterClass() {
+  public static function tearDownAfterClass(): void {
     CRM_Core_DAO::executeQuery('DROP TABLE IF EXISTS civicrm_fts_example');
     parent::tearDownAfterClass();
   }
index b147434aeab632490ef156f4402976246595a75a..ec3d503929908436c8eddec12decde0d78e88179 100644 (file)
@@ -32,7 +32,7 @@ class ExampleTransactionalTest extends \PHPUnit\Framework\TestCase implements He
   /**
    * In the first test, we make make testDummy1. He exists.
    */
-  public function testDummy1() {
+  public function testDummy1(): void {
     $this->assertTrue(is_numeric(self::$contactIds['testDummy1']) && self::$contactIds['testDummy1'] > 0);
 
     // Still inside transaction. Data exists.
@@ -45,7 +45,7 @@ class ExampleTransactionalTest extends \PHPUnit\Framework\TestCase implements He
    * We previously made testDummy1, but he's been lost (rolled-back).
    * However, testDummy2 now exists.
    */
-  public function testDummy2() {
+  public function testDummy2(): void {
     $this->assertTrue(is_numeric(self::$contactIds['testDummy1']) && self::$contactIds['testDummy1'] > 0);
     $this->assertTrue(is_numeric(self::$contactIds['testDummy2']) && self::$contactIds['testDummy2'] > 0);
 
@@ -66,7 +66,7 @@ class ExampleTransactionalTest extends \PHPUnit\Framework\TestCase implements He
    *
    * @throws \Exception
    */
-  public static function tearDownAfterClass() {
+  public static function tearDownAfterClass(): void {
     if (!is_numeric(self::$contactIds['testDummy1'])) {
       throw new \Exception("Uh oh! The static \$contactIds does not include testDummy1! Did the test fail to execute?");
     }
index 93c33236c48b2c4efe49d770789e21af3c60a246..272670c071f8486c3599e1cb6e2724a51cfca899 100644 (file)
@@ -11,7 +11,7 @@
  */
 class CiviEndToEndTestCase extends PHPUnit\Framework\TestCase implements \Civi\Test\EndToEndInterface {
 
-  public static function setUpBeforeClass() {
+  public static function setUpBeforeClass(): void {
     CRM_Core_Config::singleton(1, 1);
     CRM_Utils_System::loadBootStrap(array(
       'name' => $GLOBALS['_CV']['ADMIN_USER'],
index de13fa74ab2d6a1a9ef2cd66643ce0080c3a7038..9f2c06e3eedde1e3d18a448c93974d9bb36a86b1 100644 (file)
@@ -316,7 +316,7 @@ class CiviUnitTestCase extends PHPUnit\Framework\TestCase {
     return TRUE;
   }
 
-  public static function setUpBeforeClass() {
+  public static function setUpBeforeClass(): void {
     static::_populateDB(TRUE);
 
     // also set this global hack
index c915f524ce9d655fd6e64f26cbb72fb1483d1cf9..4420fb324f972b5ece09bcf401bd41a831f4ebc3 100644 (file)
@@ -18,7 +18,7 @@ abstract class E2E_Cache_CacheTestCase extends \Cache\IntegrationTests\SimpleCac
 
   const MAX_KEY = 255;
 
-  public static function setUpBeforeClass() {
+  public static function setUpBeforeClass(): void {
     CRM_Core_Config::singleton(1, 1);
     CRM_Utils_System::loadBootStrap(array(
       'name' => $GLOBALS['_CV']['ADMIN_USER'],
index 68a83aa856ba2b7eb78c42cfe75fe9ac70a23893..f64673fe11a67109e5999fe719cfe7bc6313b971 100644 (file)
@@ -1731,10 +1731,6 @@ class api_v3_ContributionPageTest extends CiviUnitTestCase {
     //$this->assertEquals(12, $contribution['values'][1]['api.ContributionRecur.getsingle']['frequency_interval']);
   }
 
-  public static function setUpBeforeClass() {
-    // put stuff here that should happen before all tests in this unit
-  }
-
   /**
    * Create a payment processor instance.
    *
index 1fa81b255f3358e1640ca76f1db32624f5c1384e..f9f0bc446ba535fae238171f314e75ad11ba7b4f 100644 (file)
@@ -129,11 +129,7 @@ class api_v3_PriceSetTest extends CiviUnitTestCase {
     $this->assertEquals(16, $result['values']['is_quick_config']['type']);
   }
 
-  public static function setUpBeforeClass() {
-    // put stuff here that should happen before all tests in this unit
-  }
-
-  public static function tearDownAfterClass() {
+  public static function tearDownAfterClass(): void {
     $tablesToTruncate = [
       'civicrm_contact',
       'civicrm_contribution',