12 lines
234 B
PHP
12 lines
234 B
PHP
<?php
|
|
|
|
class SpecialPasswordResetTest extends FormSpecialPageTestCase {
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
protected function newSpecialPage() {
|
|
return new SpecialPasswordReset(
|
|
$this->getServiceContainer()->getPasswordReset()
|
|
);
|
|
}
|
|
}
|