X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fsrc%2FCore%2FSystemTest.php;h=8c25fc6a23a84f7c883b2a2d2bc939b8cd3cc3dd;hb=15bc1ac8a18924551c8af772c07e5fed9c75023b;hp=1b09eb46a8c11d8bd8c1e6c5a83db52f1232338e;hpb=71181704d48307b14b0c78a3bfd6957d5e7bdd3c;p=friendica.git diff --git a/tests/src/Core/SystemTest.php b/tests/src/Core/SystemTest.php index 1b09eb46a8..8c25fc6a23 100644 --- a/tests/src/Core/SystemTest.php +++ b/tests/src/Core/SystemTest.php @@ -1,4 +1,23 @@ . + * + */ 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::assertMatchesRegularExpression("/^" . $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'); } }