/**
  * test that command() inflects the command name.
  *
  * @return void
  */
 public function testCommandInflection()
 {
     $parser = new ConsoleOptionParser('CommandLine');
     $this->assertEquals('command_line', $parser->command());
 }