public function testAdaptOptionWithDescriptionAndDefault()
 {
     $argsFormat = ArgsFormat::build()->addOption(new Option('option', 'o', Option::OPTIONAL_VALUE, 'The description', 'The default'))->getFormat();
     $adapter = new ArgsFormatInputDefinition($argsFormat);
     $this->assertEquals(array(), $adapter->getArguments());
     $this->assertEquals(array('option' => new InputOption('option', 'o', InputOption::VALUE_OPTIONAL, 'The description', 'The default')), $adapter->getOptions());
 }