X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FEventDispatcher%2FEvent%2FStepTested.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FEventDispatcher%2FEvent%2FStepTested.php;h=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hp=7053d0d55cef5b4755ecb4d18c042ff2bac07dc9;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0;p=yaffs-website diff --git a/vendor/behat/behat/src/Behat/Behat/EventDispatcher/Event/StepTested.php b/vendor/behat/behat/src/Behat/Behat/EventDispatcher/Event/StepTested.php deleted file mode 100644 index 7053d0d55..000000000 --- a/vendor/behat/behat/src/Behat/Behat/EventDispatcher/Event/StepTested.php +++ /dev/null @@ -1,50 +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\Gherkin\Node\StepNode; -use Behat\Testwork\EventDispatcher\Event\LifecycleEvent; - -/** - * Represents a step event. - * - * @author Konstantin Kudryashov - */ -abstract class StepTested extends LifecycleEvent implements GherkinNodeTested -{ - const BEFORE = 'tester.step_tested.before'; - const AFTER_SETUP = 'tester.step_tested.after_setup'; - const BEFORE_TEARDOWN = 'tester.step_tested.before_teardown'; - const AFTER = 'tester.step_tested.after'; - - /** - * Returns feature. - * - * @return FeatureNode - */ - abstract public function getFeature(); - - /** - * Returns step node. - * - * @return StepNode - */ - abstract public function getStep(); - - /** - * {@inheritdoc} - */ - final public function getNode() - { - return $this->getStep(); - } -}