UuidTest.php 334 B

123456789101112131415
  1. <?php
  2. namespace App\Tests\Service\Utils;
  3. use App\Service\Utils\Uuid;
  4. use PHPUnit\Framework\TestCase;
  5. class UuidTest extends TestCase
  6. {
  7. public function testUuid(): void
  8. {
  9. $this->assertMatchesRegularExpression('/\w{8}/', Uuid::uuid());
  10. $this->assertMatchesRegularExpression('/\w{5}/', Uuid::uuid(5));
  11. }
  12. }