public function switchAccessors()
 {
     $options = new RuntimeOptions();
     $this->assertFalse($options->getSwitch('q'));
     $options->withSwitch('q');
     $this->assertTrue($options->getSwitch('q'));
 }