summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/OATHAuth/tests/phpunit/TOTPAuthenticationRequestTest.php
blob: 56403848ddb16bc591aafa9157422f0c034be17c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

use MediaWiki\Auth\AuthenticationRequestTestCase;

class TOTPAuthenticationRequestTest extends AuthenticationRequestTestCase {

	protected function getInstance( array $args = [] ) {
		return new TOTPAuthenticationRequest();
	}

	public function provideLoadFromSubmission() {
		return [
			[ [], [], false ],
			[ [], [ 'OATHToken' => '123456' ], [ 'OATHToken' => '123456' ] ],
		];
	}
}