From 38a84bef40a8eef463337bdb7ecf4fea3f0b102d Mon Sep 17 00:00:00 2001
From: Ghislain Loas <gloas@afi-sa.fr>
Date: Wed, 30 Aug 2023 11:55:52 +0000
Subject: [PATCH] Test phpunit options for memory leak

---
 .../application/modules/AbstractControllerTestCase.php | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/tests/application/modules/AbstractControllerTestCase.php b/tests/application/modules/AbstractControllerTestCase.php
index 366000ab173..34cd2449f9c 100644
--- a/tests/application/modules/AbstractControllerTestCase.php
+++ b/tests/application/modules/AbstractControllerTestCase.php
@@ -187,6 +187,16 @@ abstract class AbstractControllerTestCase extends Zend_Test_PHPUnit_ControllerTe
                  $this->_registry_cfg);
 
     $this->_queryTearDown();
+    $this->_printMemory();
+     foreach ((new \ReflectionObject($this))->getProperties() as $prop) {
+
+
+                if ($prop->isStatic() || strpos($prop->getDeclaringClass()->getName(), 'PHPUnit\\') === 0) {
+                    continue;
+                }
+       var_dump( $prop);
+                unset($this->{$prop->getName()});
+            }
   }
 
 
-- 
GitLab