public function testSettingOptionsShouldProxyToInternalSetters()
 {
     $options = array('arbitrary' => 'foo');
     $bootstrap = new TestAsset\ZfAppBootstrap($this->application);
     $bootstrap->setOptions($options);
     $this->assertEquals('foo', $bootstrap->getArbitrary());
 }