You are here

public function UserDataCdfAttributeTest::populateUserNameAttributeProvider in Acquia Content Hub 8.2

Returns test user names.

Return value

array Data sets.

File

tests/src/Unit/EventSubscriber/CdfAttributes/UserDataCdfAttributeTest.php, line 164

Class

UserDataCdfAttributeTest
Tests the user data cdf attribute.

Namespace

Drupal\Tests\acquia_contenthub\Unit\EventSubscriber\CdfAttributes

Code

public function populateUserNameAttributeProvider() {
  return [
    [
      [
        'user name',
      ],
    ],
    [
      [
        '',
      ],
    ],
  ];
}