Security update for permissions_by_term
[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
new file mode 100644 (file)
index 0000000..4788d24
--- /dev/null
@@ -0,0 +1,70 @@
+<?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;
+    }
+}