]> git.mxchange.org Git - friendica.git/blobdiff - tests/Util/AppMockTrait.php
BBCode - fixed syntax error
[friendica.git] / tests / Util / AppMockTrait.php
index 72c0dc429bf0035764338744c390f4335b64edcf..c6793218446cc168bc01e9628b822e98609ff108 100644 (file)
@@ -27,11 +27,6 @@ trait AppMockTrait
         */
        public function mockApp($root)
        {
-               // simply returning the input when using L10n::t()
-               $l10nMock = \Mockery::mock('alias:Friendica\Core\L10n');
-               $l10nMock->shouldReceive('t')
-                       ->andReturnUsing(function ($arg) { return $arg; });
-
                $this->mockConfigGet('system', 'theme', 'testtheme');
 
                // Mocking App and most used functions
@@ -62,14 +57,6 @@ trait AppMockTrait
                $this->app
                        ->shouldReceive('getCurrentTheme')
                        ->andReturn('Smarty3');
-               $this->app
-                       ->shouldReceive('getTemplateLeftDelimiter')
-                       ->with('smarty3')
-                       ->andReturn('{{');
-               $this->app
-                       ->shouldReceive('getTemplateRightDelimiter')
-                       ->with('smarty3')
-                       ->andReturn('}}');
                $this->app
                        ->shouldReceive('saveTimestamp')
                        ->andReturn(true);
@@ -77,14 +64,6 @@ trait AppMockTrait
                        ->shouldReceive('getBaseUrl')
                        ->andReturn('http://friendica.local');
 
-               // Mocking the Theme
-               // Necessary for macro engine with template files
-               $themeMock = \Mockery::mock('alias:Friendica\Core\Theme');
-               $themeMock
-                       ->shouldReceive('install')
-                       ->with('testtheme')
-                       ->andReturn(true);
-
                BaseObject::setApp($this->app);
        }
 }