]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Content/SmiliesTest.php
spelling: cached
[friendica.git] / tests / src / Content / SmiliesTest.php
index 2e97b4d400101380609fee54b89b6c4b2652ab06..a886f1ac0137e320a73f7c4c2f879e05005b4c1f 100644 (file)
@@ -1,5 +1,22 @@
 <?php
 /**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @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/>.
+ *
  * Created by PhpStorm.
  * User: benlo
  * Date: 25/03/19
 namespace Friendica\Test\src\Content;
 
 use Friendica\Content\Smilies;
+use Friendica\DI;
 use Friendica\Network\HTTPException\InternalServerErrorException;
-use Friendica\Test\MockedTest;
-use Friendica\Test\Util\AppMockTrait;
-use Friendica\Test\Util\VFSTrait;
+use Friendica\Test\FixtureTest;
 
-class SmiliesTest extends MockedTest
+class SmiliesTest extends FixtureTest
 {
-       use VFSTrait;
-       use AppMockTrait;
-
        protected function setUp(): void
        {
                parent::setUp();
-               $this->setUpVfsDir();
-               $this->mockApp($this->root);
-               $this->configMock->shouldReceive('get')
-                       ->with('system', 'no_smilies')
-                       ->andReturn(false);
-               $this->configMock->shouldReceive('get')
-                       ->with(false, 'system', 'no_smilies')
-                       ->andReturn(false);
+
+               DI::config()->set('system', 'no_smilies', false);
        }
 
        public function dataLinks()