コード例 #1
0
ファイル: XmlPublisherTest.php プロジェクト: mhujer/steward
 public function testShouldAllowToOverrideConfigObjectFileDirWithCustomDir()
 {
     $this->publisher->setFileDir('foo/bar');
     $this->assertEquals('foo/bar/results.xml', $this->publisher->getFilePath());
 }
コード例 #2
0
ファイル: RunTestsCommand.php プロジェクト: jirinovak/steward
 /**
  * @codeCoverageIgnore
  * @param InputInterface $input
  * @param OutputInterface $output
  * @return ProcessSetCreator
  */
 protected function getProcessSetCreator(InputInterface $input, OutputInterface $output)
 {
     if (!$this->processSetCreator) {
         $xmlPublisher = new XmlPublisher($input->getArgument(self::ARGUMENT_ENVIRONMENT), null, null);
         $xmlPublisher->setFileDir($input->getOption(self::OPTION_LOGS_DIR));
         $xmlPublisher->clean();
         $this->processSetCreator = new ProcessSetCreator($this, $input, $output, $xmlPublisher);
     }
     return $this->processSetCreator;
 }