getLongOption() public method

public getLongOption ( $name )
 public function testAddOption()
 {
     $opts = new OptionCollection();
     $opts->add($o = new Option('v|verbose'));
     $this->assertSame($o, $opts->getLongOption('verbose'));
     $this->assertSame($o, $opts->getShortOption('v'));
 }