X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FHook%2FScope%2FAfterFeatureScope.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FHook%2FScope%2FAfterFeatureScope.php;h=0000000000000000000000000000000000000000;hp=4a321e97611e324294470b0fbe089965c1205bc8;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/behat/behat/src/Behat/Behat/Hook/Scope/AfterFeatureScope.php b/vendor/behat/behat/src/Behat/Behat/Hook/Scope/AfterFeatureScope.php deleted file mode 100644 index 4a321e976..000000000 --- a/vendor/behat/behat/src/Behat/Behat/Hook/Scope/AfterFeatureScope.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Behat\Behat\Hook\Scope; - -use Behat\Gherkin\Node\FeatureNode; -use Behat\Testwork\Environment\Environment; -use Behat\Testwork\Hook\Scope\AfterTestScope; -use Behat\Testwork\Suite\Suite; -use Behat\Testwork\Tester\Result\TestResult; - -/** - * Represents an AfterFeature hook scope. - * - * @author Konstantin Kudryashov - */ -final class AfterFeatureScope implements FeatureScope, AfterTestScope -{ - /** - * @var Environment - */ - private $environment; - /** - * @var FeatureNode - */ - private $feature; - /** - * @var TestResult - */ - private $result; - - /** - * Initializes scope. - * - * @param Environment $env - * @param FeatureNode $feature - * @param TestResult $result - */ - public function __construct(Environment $env, FeatureNode $feature, TestResult $result) - { - $this->environment = $env; - $this->feature = $feature; - $this->result = $result; - } - - /** - * Returns hook scope name. - * - * @return string - */ - public function getName() - { - return self::AFTER; - } - - /** - * Returns hook suite. - * - * @return Suite - */ - public function getSuite() - { - return $this->environment->getSuite(); - } - - /** - * Returns hook environment. - * - * @return Environment - */ - public function getEnvironment() - { - return $this->environment; - } - - /** - * Returns scope feature. - * - * @return FeatureNode - */ - public function getFeature() - { - return $this->feature; - } - - /** - * Returns test result. - * - * @return TestResult - */ - public function getTestResult() - { - return $this->result; - } -}