misc
authordemeritcowboy <demeritcowboy@hotmail.com>
Sat, 13 Nov 2021 19:04:37 +0000 (14:04 -0500)
committerdemeritcowboy <demeritcowboy@hotmail.com>
Sun, 14 Nov 2021 02:44:13 +0000 (21:44 -0500)
tests/phpunit/CiviTest/CiviCaseTestCase.php
tests/phpunit/CiviTest/CiviUnitTestCase.php

index e0e4dcf1354f8b4b59912522e99b1a2faca51831..95088ae6587d38be1d66479ff21f608e9e04454a 100644 (file)
@@ -114,6 +114,7 @@ class CiviCaseTestCase extends CiviUnitTestCase {
     $this->customDirectories(array('template_path' => FALSE));
     $this->quickCleanup($this->tablesToTruncate, TRUE);
     CRM_Case_XMLRepository::singleton(TRUE);
+    parent::tearDown();
   }
 
   /**
index 563c97da8e5c0c111adf627a1c67455852cf680f..99d197a20c3ff816580317e7b526657ad66383d3 100644 (file)
@@ -354,6 +354,7 @@ class CiviUnitTestCase extends PHPUnit\Framework\TestCase {
    *  Common setup functions for all unit tests.
    */
   protected function setUp(): void {
+    parent::setUp();
     $session = CRM_Core_Session::singleton();
     $session->set('userID', NULL);
 
@@ -555,6 +556,7 @@ class CiviUnitTestCase extends PHPUnit\Framework\TestCase {
     // classes frees memory as they are not otherwise unset until the
     // very end.
     unset($this->mut);
+    parent::tearDown();
   }
 
   /**