X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FEventDispatcher%2FEvent%2FAfterFeatureSetup.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FEventDispatcher%2FEvent%2FAfterFeatureSetup.php;h=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hp=73076ea68df6a6bacf91419beb002011e3ccdfde;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0;p=yaffs-website diff --git a/vendor/behat/behat/src/Behat/Behat/EventDispatcher/Event/AfterFeatureSetup.php b/vendor/behat/behat/src/Behat/Behat/EventDispatcher/Event/AfterFeatureSetup.php deleted file mode 100644 index 73076ea68..000000000 --- a/vendor/behat/behat/src/Behat/Behat/EventDispatcher/Event/AfterFeatureSetup.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Behat\Behat\EventDispatcher\Event; - -use Behat\Gherkin\Node\FeatureNode; -use Behat\Testwork\Environment\Environment; -use Behat\Testwork\EventDispatcher\Event\AfterSetup; -use Behat\Testwork\Tester\Setup\Setup; - -/** - * Represents an event right after feature is setup for a test. - * - * @author Konstantin Kudryashov - */ -final class AfterFeatureSetup extends FeatureTested implements AfterSetup -{ - /** - * @var FeatureNode - */ - private $feature; - /** - * @var Setup - */ - private $setup; - - /** - * Initializes event. - * - * @param Environment $env - * @param FeatureNode $feature - * @param Setup $setup - */ - public function __construct(Environment $env, FeatureNode $feature, Setup $setup) - { - parent::__construct($env); - - $this->feature = $feature; - $this->setup = $setup; - } - - /** - * Returns feature. - * - * @return FeatureNode - */ - public function getFeature() - { - return $this->feature; - } - - /** - * Returns current test setup. - * - * @return Setup - */ - public function getSetup() - { - return $this->setup; - } -}