l10n = $this->createMock(IL10N::class); $this->setting = new SecuritySetting($this->l10n); } public function testCanChangeMail(): void { $this->assertFalse($this->setting->canChangeMail()); } public function testCanChangeStream(): void { $this->assertFalse($this->setting->canChangeStream()); } public function testGetIdentifier(): void { $this->assertEquals('security', $this->setting->getIdentifier()); } public function testGetName(): void { $this->l10n->expects($this->once()) ->method('t') ->with('Security') ->willReturn('Sicherheit'); $this->assertEquals('Sicherheit', $this->setting->getName()); } public function testGetPriority(): void { $this->assertEquals(30, $this->setting->getPriority()); } public function testIsDefaultEnabled(): void { $this->assertTrue($this->setting->isDefaultEnabledMail()); $this->assertTrue($this->setting->isDefaultEnabledStream()); } }