diff options
Diffstat (limited to 'tests/lib/Settings/Personal/SecurityTest.php')
-rw-r--r-- | tests/lib/Settings/Personal/SecurityTest.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/lib/Settings/Personal/SecurityTest.php b/tests/lib/Settings/Personal/SecurityTest.php index 9944f1fc590..012c1d87a1f 100644 --- a/tests/lib/Settings/Personal/SecurityTest.php +++ b/tests/lib/Settings/Personal/SecurityTest.php @@ -25,6 +25,8 @@ declare(strict_types=1); namespace Test\Settings\Personal; use OC\Authentication\TwoFactorAuth\ProviderLoader; +use OCP\IInitialStateService; +use OCP\InitialStateService; use OC\Settings\Personal\Security; use OCP\AppFramework\Http\TemplateResponse; use OCP\IConfig; @@ -36,6 +38,9 @@ use Test\TestCase; class SecurityTest extends TestCase { + /** @var InitialStateService|MockObject */ + private $initialStateService; + /** @var IUserManager|MockObject */ private $userManager; @@ -57,6 +62,7 @@ class SecurityTest extends TestCase { public function setUp() { parent::setUp(); + $this->initialStateService = $this->createMock(IInitialStateService::class); $this->userManager = $this->createMock(IUserManager::class); $this->providerLoader = $this->createMock(ProviderLoader::class); $this->userSession = $this->createMock(IUserSession::class); @@ -64,6 +70,7 @@ class SecurityTest extends TestCase { $this->uid = 'test123'; $this->section = new Security( + $this->initialStateService, $this->userManager, $this->providerLoader, $this->userSession, |