]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Util/EMailerTest.php
Merge remote-tracking branch 'upstream/2021.12-rc' into api-fixes
[friendica.git] / tests / src / Util / EMailerTest.php
index 7f96e010a5b0e65482550dceebae7fd0d56fba2d..ec10ee089e5e4d4222425085a54c6204dfa73e79 100644 (file)
@@ -3,9 +3,9 @@
 namespace Friendica\Test\src\Util;
 
 use Friendica\App\BaseURL;
-use Friendica\Core\Config\IConfig;
+use Friendica\Core\Config\Capability\IManageConfigValues;
 use Friendica\Core\L10n;
-use Friendica\Core\PConfig\IPConfig;
+use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
 use Friendica\Object\EMail\IEmail;
 use Friendica\Test\MockedTest;
 use Friendica\Test\Util\EmailerSpy;
@@ -26,9 +26,9 @@ class EMailerTest extends MockedTest
        use VFSTrait;
        use HookMockTrait;
 
-       /** @var IConfig|MockInterface */
+       /** @var IManageConfigValues|MockInterface */
        private $config;
-       /** @var IPConfig|MockInterface */
+       /** @var IManagePersonalConfigValues|MockInterface */
        private $pConfig;
        /** @var L10n|MockInterface */
        private $l10n;
@@ -41,12 +41,12 @@ class EMailerTest extends MockedTest
 
                $this->setUpVfsDir();
 
-               $this->config  = \Mockery::mock(IConfig::class);
+               $this->config  = \Mockery::mock(IManageConfigValues::class);
                $this->config->shouldReceive('get')->withArgs(['config', 'sender_email'])->andReturn('test@friendica.local')->once();
                $this->config->shouldReceive('get')->withArgs(['config', 'sitename', 'Friendica Social Network'])->andReturn('Friendica Social Network')->once();
                $this->config->shouldReceive('get')->withArgs(['system', 'sendmail_params', true])->andReturn(true);
 
-               $this->pConfig = \Mockery::mock(IPConfig::class);
+               $this->pConfig = \Mockery::mock(IManagePersonalConfigValues::class);
                $this->l10n    = \Mockery::mock(L10n::class);
                $this->baseUrl = \Mockery::mock(BaseURL::class);
                $this->baseUrl->shouldReceive('getHostname')->andReturn('friendica.local');