]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/SystemTest.php
Merge pull request #9187 from MrPetovan/bug/9182-frio-modal-width
[friendica.git] / tests / src / Core / SystemTest.php
index af8d2f8f736a9460864ba78e2bcc6b4578bf9161..3f06ab6d23d5ec778ac557bec2eb276c914edf9a 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @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\src\Core;
 
@@ -10,14 +29,12 @@ use PHPUnit\Framework\TestCase;
 
 class SystemTest extends TestCase
 {
-       protected function setUp()
+       private function useBaseUrl()
        {
-               parent::setUp();
-
                $baseUrl = \Mockery::mock(BaseURL::class);
                $baseUrl->shouldReceive('getHostname')->andReturn('friendica.local')->once();
                $dice = \Mockery::mock(Dice::class);
-               $dice->shouldReceive('create')->with(BaseURL::class, [])->andReturn($baseUrl);
+               $dice->shouldReceive('create')->with(BaseURL::class)->andReturn($baseUrl);
 
                DI::init($dice);
        }
@@ -30,21 +47,27 @@ class SystemTest extends TestCase
 
        function testGuidWithoutParameter()
        {
+               $this->useBaseUrl();
                $guid = System::createGUID();
                $this->assertGuid($guid, 16);
        }
 
-       function testGuidWithSize32() {
+       function testGuidWithSize32()
+       {
+               $this->useBaseUrl();
                $guid = System::createGUID(32);
                $this->assertGuid($guid, 32);
        }
 
-       function testGuidWithSize64() {
+       function testGuidWithSize64()
+       {
+               $this->useBaseUrl();
                $guid = System::createGUID(64);
                $this->assertGuid($guid, 64);
        }
 
-       function testGuidWithPrefix() {
+       function testGuidWithPrefix()
+       {
                $guid = System::createGUID(23, 'test');
                $this->assertGuid($guid, 23, 'test');
        }