X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fsrc%2FCore%2FSystemTest.php;h=f37d2a2937bf54c520d3fb458ee5a292fc1f5929;hb=6fb3fa5875af2905a0668cfe0af39724237a5a52;hp=2235b37574790c98f6de5ce5f4a033e179c3df34;hpb=efaec26b1d8aa9af88994eaddafc7fcec4ae9ce1;p=friendica.git diff --git a/tests/src/Core/SystemTest.php b/tests/src/Core/SystemTest.php index 2235b37574..f37d2a2937 100644 --- a/tests/src/Core/SystemTest.php +++ b/tests/src/Core/SystemTest.php @@ -1,6 +1,6 @@ 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');