]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/SystemTest.php
Move L10n class from L10n subdir to Core (replacing old wrapper)
[friendica.git] / tests / src / Core / SystemTest.php
index af8d2f8f736a9460864ba78e2bcc6b4578bf9161..1b09eb46a8c11d8bd8c1e6c5a83db52f1232338e 100644 (file)
@@ -10,14 +10,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 +28,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');
        }