X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FDefinition%2FCall%2FDefinitionCall.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FDefinition%2FCall%2FDefinitionCall.php;h=0c68af2b554937c323ff982adc53dc276c5dc46e;hp=0000000000000000000000000000000000000000;hb=1270d9129ce8f27c9b28b10518e32132c58e0aca;hpb=c27c0f0cdaa3f354b1fe54a56ae7e854be6e3f68 diff --git a/vendor/behat/behat/src/Behat/Behat/Definition/Call/DefinitionCall.php b/vendor/behat/behat/src/Behat/Behat/Definition/Call/DefinitionCall.php new file mode 100644 index 000000000..0c68af2b5 --- /dev/null +++ b/vendor/behat/behat/src/Behat/Behat/Definition/Call/DefinitionCall.php @@ -0,0 +1,78 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Behat\Behat\Definition\Call; + +use Behat\Behat\Definition\Definition; +use Behat\Gherkin\Node\FeatureNode; +use Behat\Gherkin\Node\StepNode; +use Behat\Testwork\Environment\Call\EnvironmentCall; +use Behat\Testwork\Environment\Environment; + +/** + * Enhances environment call with definition information. + * + * @author Konstantin Kudryashov + */ +final class DefinitionCall extends EnvironmentCall +{ + /** + * @var FeatureNode + */ + private $feature; + /** + * @var StepNode + */ + private $step; + + /** + * Initializes definition call. + * + * @param Environment $environment + * @param FeatureNode $feature + * @param StepNode $step + * @param Definition $definition + * @param array $arguments + * @param null|integer $errorReportingLevel + */ + public function __construct( + Environment $environment, + FeatureNode $feature, + StepNode $step, + Definition $definition, + array $arguments, + $errorReportingLevel = null + ) { + parent::__construct($environment, $definition, $arguments, $errorReportingLevel); + + $this->feature = $feature; + $this->step = $step; + } + + /** + * Returns step feature node. + * + * @return FeatureNode + */ + public function getFeature() + { + return $this->feature; + } + + /** + * Returns definition step node. + * + * @return StepNode + */ + public function getStep() + { + return $this->step; + } +}