Ejemplo n.º 1
0
 public function testSetAndGetPhpPath()
 {
     $configuration = new Configuration();
     $phpPath = $this->configuration->getPhpPath();
     $configuration->setPhpPath($phpPath);
     $this->assertEquals($phpPath, $configuration->getPhpPath());
 }
Ejemplo n.º 2
0
 protected function assembleShellJobString($command)
 {
     return $this->configuration->getPhpPath() . ' ' . $this->configuration->getScriptPath() . $command;
 }