Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Output / Node / Printer / JUnit / JUnitSuitePrinter.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Output/Node/Printer/JUnit/JUnitSuitePrinter.php b/vendor/behat/behat/src/Behat/Behat/Output/Node/Printer/JUnit/JUnitSuitePrinter.php
deleted file mode 100644 (file)
index 7e5efad..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-
-/*
- * This file is part of the Behat.
- * (c) Konstantin Kudryashov <ever.zet@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Behat\Behat\Output\Node\Printer\JUnit;
-
-use Behat\Behat\Output\Node\Printer\SuitePrinter;
-use Behat\Behat\Output\Statistics\PhaseStatistics;
-use Behat\Testwork\Output\Formatter;
-use Behat\Testwork\Output\Printer\JUnitOutputPrinter;
-use Behat\Testwork\Suite\Suite;
-
-/**
- * Creates new JUnit report file.
- *
- * @author Wouter J <wouter@wouterj.nl>
- */
-final class JUnitSuitePrinter implements SuitePrinter
-{
-    /**
-     * @var PhaseStatistics
-     */
-    private $statistics;
-
-    public function __construct(PhaseStatistics $statistics = null)
-    {
-        $this->statistics = $statistics;
-    }
-
-    /**
-     * {@inheritDoc}
-     */
-    public function printHeader(Formatter $formatter, Suite $suite)
-    {
-        if ($this->statistics) {
-            $this->statistics->reset();
-        }
-
-        /** @var JUnitOutputPrinter $outputPrinter */
-        $outputPrinter = $formatter->getOutputPrinter();
-        $outputPrinter->createNewFile($suite->getName());
-    }
-
-    /**
-     * {@inheritDoc}
-     */
-    public function printFooter(Formatter $formatter, Suite $suite)
-    {
-        $formatter->getOutputPrinter()->flush();
-    }
-}