]> git.mxchange.org Git - friendica.git/commitdiff
documentation
authorPhilipp Holzer <admin@philipp.info>
Thu, 1 Nov 2018 11:43:34 +0000 (12:43 +0100)
committerPhilipp Holzer <admin@philipp.info>
Thu, 1 Nov 2018 11:48:43 +0000 (12:48 +0100)
tests/Util/RendererMockTrait.php
tests/src/Core/Console/AutomaticInstallationConsoleTest.php

index 1fe3bd97dc1d0cb06fdc240384db6abd656d0b6e..b12327f49cf0de18345fc9d926e3ec5d880702e4 100644 (file)
@@ -18,6 +18,13 @@ trait RendererMockTrait
         */
        private $rendererMock;
 
+       /**
+        * 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($templateName, $return = '', $times = null)
        {
                if (!isset($this->rendererMock)) {
@@ -31,6 +38,14 @@ trait RendererMockTrait
                        ->andReturn($return);
        }
 
+       /**
+        * Mocking the method 'Renderer::replaceMacros()'
+        *
+        * @param string $template The template to use (normally, it is the mock result of 'mockGetMarkupTemplate()'
+        * @param array $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($template, $args = [], $return = '', $times = null)
        {
                if (!isset($this->rendererMock)) {
index 9882bf37e8874231c346981fb49128c7afefb909..d8f78b483fb1a7944bbab53cdb2da556ac93a924 100644 (file)
@@ -53,6 +53,13 @@ class AutomaticInstallationConsoleTest extends ConsoleTest
                $this->mockConfigGet('config', 'php_path', false);
        }
 
+       /**
+        * Creates the arguments which is asserted to be passed to 'replaceMacros()' for creating the local.ini.php
+        *
+        * @param bool $withDb if true, DB will get saved too
+        *
+        * @return array The arguments to pass to the mock for 'replaceMacros()'
+        */
        private function createArgumentsForMacro($withDb)
        {
                $args = [