Merge "Allow resources to be salvaged across service resets."
[lhc/web/wiklou.git] / tests / phpunit / includes / auth / CreateFromLoginAuthenticationRequestTest.php
1 <?php
2
3 namespace MediaWiki\Auth;
4
5 /**
6 * @group AuthManager
7 * @covers MediaWiki\Auth\CreateFromLoginAuthenticationRequest
8 */
9 class CreateFromLoginAuthenticationRequestTest extends AuthenticationRequestTestCase {
10
11 protected function getInstance( array $args = [] ) {
12 return new CreateFromLoginAuthenticationRequest(
13 null, []
14 );
15 }
16
17 public function provideLoadFromSubmission() {
18 return [
19 'Empty request' => [
20 [],
21 [],
22 [],
23 ],
24 ];
25 }
26 }