]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/PConfig/PreloadPConfigTest.php
Merge pull request #11195 from annando/issue-10966
[friendica.git] / tests / src / Core / PConfig / PreloadPConfigTest.php
index 60d62938eb863db83fa1cef51444561adfabb024..04f9cd8e856da1fcb78d1c9fa4747d84d61ee0ce 100644 (file)
@@ -1,15 +1,33 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2022, 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/>.
+ *
+ */
 
 namespace Friendica\Test\src\Core\PConfig;
 
-use Friendica\Core\PConfig\PreloadPConfig;
-use Friendica\Test\src\Core\PConfig\PConfigTest;
+use Friendica\Core\PConfig\Type\PreloadPConfig;
 
 class PreloadPConfigTest extends PConfigTest
 {
        public function getInstance()
        {
-               return new PreloadPConfig($this->configCache, $this->configModel);
+               return new \Friendica\Core\PConfig\Type\PreloadPConfig($this->configCache, $this->configModel);
        }
 
        /**
@@ -30,7 +48,7 @@ class PreloadPConfigTest extends PConfigTest
 
                // Assert that every category is loaded everytime
                foreach ($data as $cat => $values) {
-                       $this->assertConfig($uid, $cat, $values);
+                       self::assertConfig($uid, $cat, $values);
                }
        }
 
@@ -52,7 +70,7 @@ class PreloadPConfigTest extends PConfigTest
 
                // Assert that every category is loaded everytime and is NOT overwritten
                foreach ($data1 as $cat => $values) {
-                       $this->assertConfig($uid, $cat, $values);
+                       self::assertConfig($uid, $cat, $values);
                }
        }