wiki.techinc.nl/tests/phpunit/includes/specials/SpecialPasswordResetTest.php
Alexander Vorwerk decbaf4f38 phpunit: use ->getServiceContainer() in integration tests
Change-Id: I38299cb65eeaadfdc0eb05db4e8c0b0119cfb37d
2022-01-27 22:04:16 +01:00

12 lines
234 B
PHP

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