wiki.techinc.nl/tests/phpunit/includes/auth/UsernameAuthenticationRequestTest.php
Reedy e94e265a93 tests: Add Tests to PHP namespacing
Change-Id: I849268172751d50292e93aa75abe8094873f56bc
2024-02-16 19:10:11 +00:00

36 lines
651 B
PHP

<?php
namespace MediaWiki\Tests\Auth;
use MediaWiki\Auth\UsernameAuthenticationRequest;
/**
* @group AuthManager
* @covers \MediaWiki\Auth\UsernameAuthenticationRequest
*/
class UsernameAuthenticationRequestTest extends AuthenticationRequestTestCase {
protected function getInstance( array $args = [] ) {
return new UsernameAuthenticationRequest();
}
public static function provideLoadFromSubmission() {
return [
'Empty request' => [
[],
[],
false
],
'Username' => [
[],
$data = [ 'username' => 'User' ],
$data,
],
'Username empty' => [
[],
[ 'username' => '' ],
false
],
];
}
}