API: Fixes for AuthManager
[mediawiki.git] / tests / phpunit / includes / auth / CreateFromLoginAuthenticationRequestTest.php
blobfb0613d185429dc7ad7feee83c134dafa9d3c6b9
1 <?php
3 namespace MediaWiki\Auth;
5 /**
6 * @group AuthManager
7 * @covers MediaWiki\Auth\CreateFromLoginAuthenticationRequest
8 */
9 class CreateFromLoginAuthenticationRequestTest extends AuthenticationRequestTestCase {
11 protected function getInstance( array $args = [] ) {
12 return new CreateFromLoginAuthenticationRequest(
13 null, []
17 public function provideLoadFromSubmission() {
18 return [
19 'Empty request' => [
20 [],
21 [],
22 [],