function UserAuthTest::providerTestAuthenticateWithMissingCredentials
Data provider for testAuthenticateWithMissingCredentials().
Return value
array An array of test data.
File
-
core/
modules/ user/ tests/ src/ Unit/ UserAuthTest.php, line 115
Class
- UserAuthTest
- Tests Drupal\user\UserAuth.
Namespace
Drupal\Tests\user\UnitCode
public static function providerTestAuthenticateWithMissingCredentials() {
return [
[
NULL,
NULL,
],
[
NULL,
'',
],
[
'',
NULL,
],
[
'',
'',
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.