You are here

public function UserAuthTest::providerTestAuthenticateWithMissingCredentials in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/user/tests/src/Unit/UserAuthTest.php \Drupal\Tests\user\Unit\UserAuthTest::providerTestAuthenticateWithMissingCredentials()

Data provider for testAuthenticateWithMissingCredentials().

Return value

array

File

core/modules/user/tests/src/Unit/UserAuthTest.php, line 99

Class

UserAuthTest
@coversDefaultClass \Drupal\user\UserAuth @group user

Namespace

Drupal\Tests\user\Unit

Code

public function providerTestAuthenticateWithMissingCredentials() {
  return [
    [
      NULL,
      NULL,
    ],
    [
      NULL,
      '',
    ],
    [
      '',
      NULL,
    ],
    [
      '',
      '',
    ],
  ];
}