Remove remaining free() instances from tests
authoreileen <emcnaughton@wikimedia.org>
Tue, 16 Apr 2019 20:57:56 +0000 (06:57 +1000)
committereileen <emcnaughton@wikimedia.org>
Tue, 16 Apr 2019 20:57:56 +0000 (06:57 +1000)
Civi/Test/DbTestTrait.php
tests/phpunit/CRM/Core/BAO/RecurringEntityTest.php
tests/phpunit/CRM/Core/DAOTest.php
tests/phpunit/CRM/Core/FieldOptionsTest.php
tests/phpunit/CRM/Logging/LoggingTest.php
tests/phpunit/CiviTest/CiviDBAssert.php
tests/phpunit/CiviTest/CiviMailUtils.php
tests/phpunit/api/v3/SyntaxConformanceTest.php

index e8f7209e7968e459fdf108c04b4e838b83dd5f21..06b5e60b3c635fefcd663156b0d9ad82248bc7c2 100644 (file)
@@ -64,7 +64,7 @@ trait DbTestTrait {
     else {
       $this->fail("Could not retrieve object: $daoName, $id");
     }
-    $object->free();
+
     $matchSize = count($match);
     if ($verifiedCount != $matchSize) {
       $this->fail("Did not verify all fields in match array: $daoName, $id. Verified count = $verifiedCount. Match array size = $matchSize");
index 199d46873e18f2a22882a239c68e42b8af1ce876..7452e2cab1f5a74ed5a4a6786da609adb30b6511 100644 (file)
@@ -298,7 +298,6 @@ class CRM_Core_BAO_RecurringEntityTest extends CiviUnitTestCase {
     $daoRecurEvent->id = $generatedEntities['civicrm_event'][$key];
     if ($daoRecurEvent->find(TRUE)) {
       $daoRecurEvent->delete();
-      $daoRecurEvent->free();
     }
 
     //Check if this event_id was deleted
index 397e54ec12b5e8cd26c9c89ccfed35a3660c2f09..e2bae8e16da9f5f24880f8389c4302a99a584c83 100644 (file)
@@ -373,11 +373,9 @@ class CRM_Core_DAOTest extends CiviUnitTestCase {
 
     $dao = CRM_Core_DAO::executeQuery($sql);
     $contactsFetchedFromBufferedQuery = $dao->fetchAll();
-    $dao->free();
 
     $dao = CRM_Core_DAO::executeUnbufferedQuery($sql);
     $contactsFetchedFromUnbufferedQuery = $dao->fetchAll();
-    $dao->free();
 
     $this->checkArrayEquals($contactsFetchedFromBufferedQuery, $contactsFetchedFromUnbufferedQuery);
   }
index b0e8370c98afc6091db11215911a4c2b7109bd9f..8ac635e529e480f8629959fba9dbe91673e33dbd 100644 (file)
@@ -204,8 +204,6 @@ class CRM_Core_FieldOptionsTest extends CiviUnitTestCase {
     $this->appendOptions = array(2 => 'Maybe');
     $options = CRM_Core_PseudoConstant::get('CRM_Core_BAO_CustomField', $this->targetField);
     $this->assertEquals(array(1 => 'Yes', 0 => 'No', 2 => 'Maybe'), $options);
-
-    $field->free();
   }
 
   /**
index 880cddb22ff5b316bdf3099d04def8673cd14746..62d2423201127c0d5e9a62f6f0f7e331ffe8d08a 100644 (file)
@@ -46,7 +46,6 @@ class CRM_Logging_LoggingTest extends CiviUnitTestCase {
     $logging->fixSchemaDifferencesFor('civicrm_option_value', array(), TRUE);
     $query = CRM_Core_DAO::executeQuery("SHOW CREATE TABLE `log_civicrm_option_value`", array(), TRUE, NULL, FALSE, FALSE);
     $query->fetch();
-    $query->free();
     $create = explode("\n", $query->Create_Table);
     $this->assertTrue(in_array("  `logging_test` int(11) DEFAULT '0'", $create));
     $create = explode("\n", $query->Create_Table);
index 3289859185087f12dd128b4865be2468f9338134..8496f9d3adf9a5dcbd1338f775f84fb2323ac772 100644 (file)
@@ -86,7 +86,6 @@ class CiviDBAssert {
     else {
       $testCase->fail("Could not retrieve object: $daoName, $id");
     }
-    $object->free();
     $matchSize = count($match);
     if ($verifiedCount != $matchSize) {
       $testCase->fail("Did not verify all fields in match array: $daoName, $id. Verified count = $verifiedCount. Match array size = $matchSize");
index a9ee7da7a0594a6603205c1b717aace38a9448cb..fd1f66599dd526a11e815db72c2512478f638484 100644 (file)
@@ -165,7 +165,6 @@ class CiviMailUtils extends PHPUnit_Framework_TestCase {
       if ($dao->fetch()) {
         $msg = $dao->headers . "\n\n" . $dao->body;
       }
-      $dao->free();
     }
 
     switch ($type) {
@@ -198,7 +197,6 @@ class CiviMailUtils extends PHPUnit_Framework_TestCase {
       while ($dao->fetch()) {
         $msgs[] = $dao->headers . "\n\n" . $dao->body;
       }
-      $dao->free();
     }
 
     switch ($type) {
index 76d31f00158a906b1b426ab71cd39f8da87565f0..8880c0c15dbc4620890e66bd862b35c206c15ae8 100644 (file)
@@ -1073,7 +1073,6 @@ class api_v3_SyntaxConformanceTest extends CiviUnitTestCase {
     for ($i = 0; $i < 30; $i++) {
       $baoObj = CRM_Core_DAO::createTestObject($baoString, array('currency' => 'USD'));
       $ids[] = $baoObj->id;
-      $baoObj->free();
     }
 
     // each case is array(0 => $inputtedApiOptions, 1 => $expectedResultCount)
@@ -1090,7 +1089,6 @@ class api_v3_SyntaxConformanceTest extends CiviUnitTestCase {
     foreach ($ids as $id) {
       CRM_Core_DAO::deleteTestObjects($baoString, array('id' => $id));
     }
-    $baoObj->free();
   }
 
   /**
@@ -1120,7 +1118,6 @@ class api_v3_SyntaxConformanceTest extends CiviUnitTestCase {
       for ($i = 0; $i < 3 - $totalEntities; $i++) {
         $baoObj = CRM_Core_DAO::createTestObject($baoString, array('currency' => 'USD'));
         $ids[] = $baoObj->id;
-        $baoObj->free();
       }
       $totalEntities = 3;
     }
@@ -1558,7 +1555,6 @@ class api_v3_SyntaxConformanceTest extends CiviUnitTestCase {
         }
       }
     }
-    $baoObj->free();
   }
 
   /* ---- testing the _getFields ---- */