handle() public method

public handle ( )
 public function testHandleWithCustomManBinary()
 {
     $this->processLauncher->expects($this->once())->method('isSupported')->will($this->returnValue(true));
     $this->executableFinder->expects($this->never())->method('find');
     $this->processLauncher->expects($this->once())->method('launchProcess')->with('my-man -l %path%', array('path' => $this->path), false)->will($this->returnValue(123));
     $this->handler->setManBinary('my-man');
     $status = $this->handler->handle($this->args, $this->io, $this->command);
     $this->assertSame(123, $status);
 }