]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/SystemTest.php
Reenable Twitter/Mentions tests
[friendica.git] / tests / src / Core / SystemTest.php
index 2235b37574790c98f6de5ce5f4a033e179c3df34..f37d2a2937bf54c520d3fb458ee5a292fc1f5929 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2021, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -45,28 +45,28 @@ class SystemTest extends TestCase
                self::assertRegExp("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid);
        }
 
-       function testGuidWithoutParameter()
+       public function testGuidWithoutParameter()
        {
                $this->useBaseUrl();
                $guid = System::createGUID();
                self::assertGuid($guid, 16);
        }
 
-       function testGuidWithSize32()
+       public function testGuidWithSize32()
        {
                $this->useBaseUrl();
                $guid = System::createGUID(32);
                self::assertGuid($guid, 32);
        }
 
-       function testGuidWithSize64()
+       public function testGuidWithSize64()
        {
                $this->useBaseUrl();
                $guid = System::createGUID(64);
                self::assertGuid($guid, 64);
        }
 
-       function testGuidWithPrefix()
+       public function testGuidWithPrefix()
        {
                $guid = System::createGUID(23, 'test');
                self::assertGuid($guid, 23, 'test');