Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / EventDispatcher / Event / SuiteTested.php
1 <?php
2
3 /*
4  * This file is part of the Behat Testwork.
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\Testwork\EventDispatcher\Event;
12
13 use Behat\Testwork\Specification\SpecificationIterator;
14
15 /**
16  * Represents a suite event.
17  *
18  * @author Konstantin Kudryashov <ever.zet@gmail.com>
19  */
20 abstract class SuiteTested extends LifecycleEvent
21 {
22     const BEFORE = 'tester.suite_tested.before';
23     const AFTER_SETUP = 'tester.suite_tested.after_setup';
24     const BEFORE_TEARDOWN = 'tester.suite_tested.before_teardown';
25     const AFTER = 'tester.suite_tested.after';
26
27     /**
28      * Returns specification iterator.
29      *
30      * @return SpecificationIterator
31      */
32     abstract public function getSpecificationIterator();
33 }