]> git.mxchange.org Git - friendica.git/blobdiff - tests/Util/RendererMockTrait.php
Remove relocation form from Admin Site settings
[friendica.git] / tests / Util / RendererMockTrait.php
index 1fe3bd97dc1d0cb06fdc240384db6abd656d0b6e..49c669a2b21932ae8a6fc76888c76e757c180396 100644 (file)
@@ -1,14 +1,27 @@
 <?php
 /**
- * Created by PhpStorm.
- * User: philipp
- * Date: 01.11.18
- * Time: 10:08
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
 
 namespace Friendica\Test\Util;
 
-
+use Friendica\Core\Renderer;
 use Mockery\MockInterface;
 
 trait RendererMockTrait
@@ -18,10 +31,17 @@ trait RendererMockTrait
         */
        private $rendererMock;
 
-       public function mockGetMarkupTemplate($templateName, $return = '', $times = null)
+       /**
+        * Mocking the method 'Renderer::getMarkupTemplate()'
+        *
+        * @param string   $templateName The name of the template which should get
+        * @param string   $return       the return value of the mock (should be defined to have it later for followUp use)
+        * @param null|int $times        How often the method will get used
+        */
+       public function mockGetMarkupTemplate(string $templateName, string $return = '', int $times = null)
        {
                if (!isset($this->rendererMock)) {
-                       $this->rendererMock = \Mockery::mock('alias:Friendica\Core\Renderer');
+                       $this->rendererMock = \Mockery::mock('alias:' . Renderer::class);
                }
 
                $this->rendererMock
@@ -31,10 +51,22 @@ trait RendererMockTrait
                        ->andReturn($return);
        }
 
-       public function mockReplaceMacros($template, $args = [], $return = '', $times = null)
+       /**
+        * Mocking the method 'Renderer::replaceMacros()'
+        *
+        * @param string              $template The template to use (normally, it is the mock result of 'mockGetMarkupTemplate()'
+        * @param array|\Closure|null $args     The arguments to pass to the macro
+        * @param string              $return   the return value of the mock
+        * @param null|int            $times    How often the method will get used
+        */
+       public function mockReplaceMacros(string $template, $args = null, string $return = '', int $times = null)
        {
                if (!isset($this->rendererMock)) {
-                       $this->rendererMock = \Mockery::mock('alias:Friendica\Core\Renderer');
+                       $this->rendererMock = \Mockery::mock('alias:' . Renderer::class);
+               }
+
+               if (!isset($args)) {
+                       $args = [];
                }
 
                $this->rendererMock