コード例 #1
0
ファイル: gvim.php プロジェクト: xihewang/atoum
 public function __construct()
 {
     parent::__construct('gvim +%2$d %1$s > /dev/null &');
 }
コード例 #2
0
ファイル: macvim.php プロジェクト: xihewang/atoum
 public function __construct()
 {
     parent::__construct('mvim --remote-silent +%2$s %1$s');
 }
コード例 #3
0
ファイル: execute.php プロジェクト: xihewang/atoum
 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);
 }
コード例 #4
0
ファイル: gedit.php プロジェクト: xihewang/atoum
 public function __construct()
 {
     parent::__construct('gedit %1$s +%2$d > /dev/null &');
 }
コード例 #5
0
ファイル: phpstorm.php プロジェクト: xihewang/atoum
 public function getCommand()
 {
     return parent::getCommand() . ' --line %2$d %1$s &> /dev/null &';
 }
コード例 #6
0
ファイル: phpstorm.php プロジェクト: xihewang/atoum
 public function setCommand($command)
 {
     return parent::setCommand($command . ' --line %2$d %1$s &> /dev/null &');
 }