Example #1
0
 public function __construct()
 {
     parent::__construct('gvim +%2$d %1$s > /dev/null &');
 }
Example #2
0
 public function __construct()
 {
     parent::__construct('mvim --remote-silent +%2$s %1$s');
 }
Example #3
0
 public function testHandleEvent()
 {
     $this->if($field = new testedClass(uniqid()))->then->boolean($field->handleEvent(atoum\runner::runStart, new atoum\runner()))->isFalse()->variable($field->getRunner())->isNull()->boolean($field->handleEvent(atoum\runner::runStop, $runner = new atoum\runner()))->isTrue()->object($field->getRunner())->isIdenticalTo($runner);
 }
Example #4
0
 public function __construct()
 {
     parent::__construct('gedit %1$s +%2$d > /dev/null &');
 }
Example #5
0
 public function getCommand()
 {
     return parent::getCommand() . ' --line %2$d %1$s &> /dev/null &';
 }
Example #6
0
 public function setCommand($command)
 {
     return parent::setCommand($command . ' --line %2$d %1$s &> /dev/null &');
 }