public function testSetAndGetScriptPath()
 {
     $configuration = new Configuration();
     $scriptPath = $this->configuration->getScriptPath();
     $configuration->setScriptPath($scriptPath);
     $this->assertEquals($scriptPath, $configuration->getScriptPath());
 }
 public function testgetDefaultScriptPath()
 {
     $configuration = new Configuration();
     $scriptPath = $this->configuration->getScriptPath();
     $this->assertNotNull($scriptPath);
 }
 protected function assembleShellJobString($command)
 {
     return $this->configuration->getPhpPath() . ' ' . $this->configuration->getScriptPath() . $command;
 }