public function UuidUnitTest::testGenerateUuid

Tests generating a UUID.

File

drupal/core/modules/system/lib/Drupal/system/Tests/Uuid/UuidUnitTest.php, line 42
Definition of Drupal\system\Tests\Uuid\UuidUnitTest.

Class

UuidUnitTest
Tests the Drupal\Component\Uuid\Uuid class.

Namespace

Drupal\system\Tests\Uuid

Code

public function testGenerateUuid() {
  $uuid = $this->uuid
    ->generate();
  $this
    ->assertTrue($this->uuid
    ->isValid($uuid), 'UUID generation works.');
}