コード例 #1
0
ファイル: XmlPublisherTest.php プロジェクト: mhujer/steward
 public function testShouldCleanPreviousResults()
 {
     $fn = self::getFilePath('previous.xml');
     touch($fn);
     $this->assertFileExists($fn, 'Fixture file was not created');
     // check preconditions
     $this->publisher->setFileName(basename($fn));
     $this->publisher->clean();
     $this->assertFileNotExists($fn);
 }
コード例 #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;
 }