Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / EventDispatcher / Event / AfterFeatureTested.php
1 <?php
2
3 /*
4  * This file is part of the Behat.
5  * (c) Konstantin Kudryashov <ever.zet@gmail.com>
6  *
7  * For the full copyright and license information, please view the LICENSE
8  * file that was distributed with this source code.
9  */
10
11 namespace Behat\Behat\EventDispatcher\Event;
12
13 use Behat\Gherkin\Node\FeatureNode;
14 use Behat\Testwork\Environment\Environment;
15 use Behat\Testwork\EventDispatcher\Event\AfterTested;
16 use Behat\Testwork\Tester\Result\TestResult;
17 use Behat\Testwork\Tester\Setup\Teardown;
18
19 /**
20  * Represents an event right after feature was tested.
21  *
22  * @author Konstantin Kudryashov <ever.zet@gmail.com>
23  */
24 final class AfterFeatureTested extends FeatureTested implements AfterTested
25 {
26     /**
27      * @var FeatureNode
28      */
29     private $feature;
30     /**
31      * @var TestResult
32      */
33     private $result;
34     /**
35      * @var Teardown
36      */
37     private $teardown;
38
39     /**
40      * Initializes event.
41      *
42      * @param Environment $env
43      * @param FeatureNode $feature
44      * @param TestResult  $result
45      * @param Teardown    $teardown
46      */
47     public function __construct(Environment $env, FeatureNode $feature, TestResult $result, Teardown $teardown)
48     {
49         parent::__construct($env);
50
51         $this->feature = $feature;
52         $this->result = $result;
53         $this->teardown = $teardown;
54     }
55
56     /**
57      * Returns feature.
58      *
59      * @return FeatureNode
60      */
61     public function getFeature()
62     {
63         return $this->feature;
64     }
65
66     /**
67      * Returns current test result.
68      *
69      * @return TestResult
70      */
71     public function getTestResult()
72     {
73         return $this->result;
74     }
75
76     /**
77      * Returns current test teardown.
78      *
79      * @return Teardown
80      */
81     public function getTeardown()
82     {
83         return $this->teardown;
84     }
85 }