示例#1
0
 /**
  * @expectedException        \InvalidArgumentException
  * @expectedExceptionMessage The "-f" option does not exist.
  */
 public function testSetOptionsClearsOptions()
 {
     $this->initializeOptions();
     $definition = new InputDefinition(array($this->foo));
     $definition->setOptions(array($this->bar));
     $definition->getOptionForShortcut('f');
 }