]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/SystemTest.php
Reenable Twitter/Mentions tests
[friendica.git] / tests / src / Core / SystemTest.php
index 1b09eb46a8c11d8bd8c1e6c5a83db52f1232338e..f37d2a2937bf54c520d3fb458ee5a292fc1f5929 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, 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;
 
@@ -23,33 +42,33 @@ class SystemTest extends TestCase
        private function assertGuid($guid, $length, $prefix = '')
        {
                $length -= strlen($prefix);
-               $this->assertRegExp("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid);
+               self::assertRegExp("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid);
        }
 
-       function testGuidWithoutParameter()
+       public function testGuidWithoutParameter()
        {
                $this->useBaseUrl();
                $guid = System::createGUID();
-               $this->assertGuid($guid, 16);
+               self::assertGuid($guid, 16);
        }
 
-       function testGuidWithSize32()
+       public function testGuidWithSize32()
        {
                $this->useBaseUrl();
                $guid = System::createGUID(32);
-               $this->assertGuid($guid, 32);
+               self::assertGuid($guid, 32);
        }
 
-       function testGuidWithSize64()
+       public function testGuidWithSize64()
        {
                $this->useBaseUrl();
                $guid = System::createGUID(64);
-               $this->assertGuid($guid, 64);
+               self::assertGuid($guid, 64);
        }
 
-       function testGuidWithPrefix()
+       public function testGuidWithPrefix()
        {
                $guid = System::createGUID(23, 'test');
-               $this->assertGuid($guid, 23, 'test');
+               self::assertGuid($guid, 23, 'test');
        }
 }