* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Behat\Testwork\EventDispatcher\Event; use Behat\Testwork\Specification\SpecificationIterator; /** * Represents a suite event. * * @author Konstantin Kudryashov */ abstract class SuiteTested extends LifecycleEvent { const BEFORE = 'tester.suite_tested.before'; const AFTER_SETUP = 'tester.suite_tested.after_setup'; const BEFORE_TEARDOWN = 'tester.suite_tested.before_teardown'; const AFTER = 'tester.suite_tested.after'; /** * Returns specification iterator. * * @return SpecificationIterator */ abstract public function getSpecificationIterator(); }