get( SkinOptions::BETA_MODE ); $options->setMultiple( [ SkinOptions::BETA_MODE => !$defaultValue ] ); $allOptions = $options->getAll(); $this->assertEquals( !$defaultValue, $options->get( SkinOptions::BETA_MODE ) ); $this->assertArrayHasKey( SkinOptions::BETA_MODE, $allOptions ); $this->assertEquals( !$defaultValue, $allOptions[ SkinOptions::BETA_MODE ] ); } /** * @covers ::hasSkinOptions */ public function testHasSkinOptions() { $options = new SkinOptions(); $this->assertTrue( $options->hasSkinOptions() ); $options->setMultiple( [ SkinOptions::TALK_AT_TOP => false, SkinOptions::HISTORY_IN_PAGE_ACTIONS => false, SkinOptions::TOOLBAR_SUBMENU => false, SkinOptions::MAIN_MENU_EXPANDED => false, SkinOptions::PERSONAL_MENU => false, ] ); $this->assertFalse( $options->hasSkinOptions() ); } /** * @covers ::get */ public function testGettingUnknownKeyShouldThrowException() { $options = new SkinOptions(); $this->expectException( OutOfBoundsException::class ); $options->get( 'non_existing_key' ); } /** * @covers ::get */ public function testSettingUnknownKeyShouldThrowException() { $options = new SkinOptions(); $this->expectException( OutOfBoundsException::class ); $options->setMultiple( [ 'non_existing_key' => 1 ] ); } }