You are here

public function ImportEntityManagerTest::provideEntityUuid in Acquia Content Hub 8

Provide some UUID values.

Return value

array A list of UUIDs.

File

tests/src/Unit/ImportEntityManagerTest.php, line 1007

Class

ImportEntityManagerTest
PHPUnit test for the ImportEntityManager class.

Namespace

Drupal\Tests\acquia_contenthub\Unit

Code

public function provideEntityUuid() {
  return [
    [
      '00000000-0000-0000-0000-000000000000',
    ],
    [
      '00000000-0001-0000-0000-000000000000',
    ],
    [
      '00000000-0002-0000-0000-000000000000',
    ],
    [
      '00000000-0003-0000-0000-000000000000',
    ],
  ];
}