Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Output / Node / Printer / Pretty / PrettyFeaturePrinter.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Output/Node/Printer/Pretty/PrettyFeaturePrinter.php b/vendor/behat/behat/src/Behat/Behat/Output/Node/Printer/Pretty/PrettyFeaturePrinter.php
deleted file mode 100644 (file)
index 1a352c7..0000000
+++ /dev/null
@@ -1,133 +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\Pretty;
-
-use Behat\Behat\Output\Node\Printer\FeaturePrinter;
-use Behat\Gherkin\Node\FeatureNode;
-use Behat\Gherkin\Node\TaggedNodeInterface;
-use Behat\Testwork\Output\Formatter;
-use Behat\Testwork\Output\Printer\OutputPrinter;
-use Behat\Testwork\Tester\Result\TestResult;
-
-/**
- * Prints feature header and footer.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-final class PrettyFeaturePrinter implements FeaturePrinter
-{
-    /**
-     * @var string
-     */
-    private $indentText;
-    /**
-     * @var string
-     */
-    private $subIndentText;
-
-    /**
-     * Initializes printer.
-     *
-     * @param integer $indentation
-     * @param integer $subIndentation
-     */
-    public function __construct($indentation = 0, $subIndentation = 2)
-    {
-        $this->indentText = str_repeat(' ', intval($indentation));
-        $this->subIndentText = $this->indentText . str_repeat(' ', intval($subIndentation));
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function printHeader(Formatter $formatter, FeatureNode $feature)
-    {
-        if ($feature instanceof TaggedNodeInterface) {
-            $this->printTags($formatter->getOutputPrinter(), $feature->getTags());
-        }
-
-        $this->printTitle($formatter->getOutputPrinter(), $feature);
-        $this->printDescription($formatter->getOutputPrinter(), $feature);
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function printFooter(Formatter $formatter, TestResult $result)
-    {
-    }
-
-    /**
-     * Prints feature tags.
-     *
-     * @param OutputPrinter $printer
-     * @param string[]      $tags
-     */
-    private function printTags(OutputPrinter $printer, array $tags)
-    {
-        if (!count($tags)) {
-            return;
-        }
-
-        $tags = array_map(array($this, 'prependTagWithTagSign'), $tags);
-        $printer->writeln(sprintf('%s{+tag}%s{-tag}', $this->indentText, implode(' ', $tags)));
-    }
-
-    /**
-     * Prints feature title using provided printer.
-     *
-     * @param OutputPrinter $printer
-     * @param FeatureNode   $feature
-     */
-    private function printTitle(OutputPrinter $printer, FeatureNode $feature)
-    {
-        $printer->write(sprintf('%s{+keyword}%s:{-keyword}', $this->indentText, $feature->getKeyword()));
-
-        if ($title = $feature->getTitle()) {
-            $printer->write(sprintf(' %s', $title));
-        }
-
-        $printer->writeln();
-    }
-
-    /**
-     * Prints feature description using provided printer.
-     *
-     * @param OutputPrinter $printer
-     * @param FeatureNode   $feature
-     */
-    private function printDescription(OutputPrinter $printer, FeatureNode $feature)
-    {
-        if (!$feature->getDescription()) {
-            $printer->writeln();
-
-            return;
-        }
-
-        foreach (explode("\n", $feature->getDescription()) as $descriptionLine) {
-            $printer->writeln(sprintf('%s%s', $this->subIndentText, $descriptionLine));
-        }
-
-        $printer->writeln();
-    }
-
-    /**
-     * Prepends tags string with tag-sign.
-     *
-     * @param string $tag
-     *
-     * @return string
-     */
-    private function prependTagWithTagSign($tag)
-    {
-        return '@' . $tag;
-    }
-}