UuidTest.php 375 B

123456789101112131415161718
  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. /**
  8. * @see Uuid::uuid()
  9. */
  10. public function testUuid(): void
  11. {
  12. $this->assertMatchesRegularExpression('/\w{8}/', Uuid::uuid());
  13. $this->assertMatchesRegularExpression('/\w{5}/', Uuid::uuid(5));
  14. }
  15. }