Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Tester / Result / SkippedStepResult.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Tester/Result/SkippedStepResult.php b/vendor/behat/behat/src/Behat/Behat/Tester/Result/SkippedStepResult.php
deleted file mode 100644 (file)
index 4788d24..0000000
+++ /dev/null
@@ -1,70 +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\Tester\Result;
-
-use Behat\Behat\Definition\SearchResult;
-
-/**
- * Represents a skipped step result.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-final class SkippedStepResult implements StepResult, DefinedStepResult
-{
-    /**
-     * @var SearchResult
-     */
-    private $searchResult;
-
-    /**
-     * Initializes step result.
-     *
-     * @param SearchResult $searchResult
-     */
-    public function __construct(SearchResult $searchResult)
-    {
-        $this->searchResult = $searchResult;
-    }
-    
-    /**
-     * Returns definition search result.
-     *
-     * @return SearchResult
-     */
-    public function getSearchResult()
-    {
-        return $this->searchResult;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getStepDefinition()
-    {
-        return $this->searchResult->getMatchedDefinition();
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function isPassed()
-    {
-        return false;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getResultCode()
-    {
-        return self::SKIPPED;
-    }
-}