]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Model/User/CookieTest.php
Merge remote-tracking branch 'friendica/stable' into develop
[friendica.git] / tests / src / Model / User / CookieTest.php
index b689fc97c85cc547617a039a437bf50c53b926ba..40c99f3ea73fa5b19078bb4ac3a11307bac8953c 100644 (file)
@@ -1,17 +1,36 @@
 <?php
-
-namespace Friendica\Testsrc\Model\User;
+/**
+ * @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\Model\User;
 
 use Friendica\App\BaseURL;
-use Friendica\Core\Config\Configuration;
+use Friendica\Core\Config\IConfig;
 use Friendica\Model\User\Cookie;
-use Friendica\Test\DatabaseTest;
+use Friendica\Test\MockedTest;
 use Friendica\Test\Util\StaticCookie;
 use Mockery\MockInterface;
 
-class CookieTest extends DatabaseTest
+class CookieTest extends MockedTest
 {
-       /** @var MockInterface|Configuration */
+       /** @var MockInterface|IConfig */
        private $config;
        /** @var MockInterface|BaseURL */
        private $baseUrl;
@@ -22,7 +41,7 @@ class CookieTest extends DatabaseTest
 
                parent::setUp();
 
-               $this->config = \Mockery::mock(Configuration::class);
+               $this->config = \Mockery::mock(IConfig::class);
                $this->baseUrl = \Mockery::mock(BaseURL::class);
        }