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

36 lines
676 B
PHP

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