adminSettings = new AdminSettings(); } /** * Returns the onlyoffice section identifier. */ public function testGetSection(): void { $this->assertSame("onlyoffice", $this->adminSettings->getSection()); } /** * Returns a positive integer as the settings priority. */ public function testGetPriority(): void { $this->assertGreaterThan(0, $this->adminSettings->getPriority()); } }