Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Tester / Result / ExecutedStepResult.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Tester/Result/ExecutedStepResult.php b/vendor/behat/behat/src/Behat/Behat/Tester/Result/ExecutedStepResult.php
deleted file mode 100644 (file)
index 40633ec..0000000
+++ /dev/null
@@ -1,113 +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;
-use Behat\Behat\Tester\Exception\PendingException;
-use Behat\Testwork\Call\CallResult;
-use Behat\Testwork\Tester\Result\ExceptionResult;
-
-/**
- * Represents an executed (successfully or not) step result.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-final class ExecutedStepResult implements StepResult, DefinedStepResult, ExceptionResult
-{
-    /**
-     * @var SearchResult
-     */
-    private $searchResult;
-    /**
-     * @var null|CallResult
-     */
-    private $callResult;
-
-    /**
-     * Initialize test result.
-     *
-     * @param SearchResult $searchResult
-     * @param CallResult   $callResult
-     */
-    public function __construct(SearchResult $searchResult, CallResult $callResult)
-    {
-        $this->searchResult = $searchResult;
-        $this->callResult = $callResult;
-    }
-
-    /**
-     * Returns definition search result.
-     *
-     * @return SearchResult
-     */
-    public function getSearchResult()
-    {
-        return $this->searchResult;
-    }
-
-    /**
-     * Returns definition call result or null if no call were made.
-     *
-     * @return CallResult
-     */
-    public function getCallResult()
-    {
-        return $this->callResult;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getStepDefinition()
-    {
-        return $this->searchResult->getMatchedDefinition();
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function hasException()
-    {
-        return null !== $this->getException();
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getException()
-    {
-        return $this->callResult->getException();
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getResultCode()
-    {
-        if ($this->callResult->hasException() && $this->callResult->getException() instanceof PendingException) {
-            return self::PENDING;
-        }
-
-        if ($this->callResult->hasException()) {
-            return self::FAILED;
-        }
-
-        return self::PASSED;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function isPassed()
-    {
-        return self::PASSED == $this->getResultCode();
-    }
-}