Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / EventDispatcher / Event / ExerciseCompleted.php
diff --git a/vendor/behat/behat/src/Behat/Testwork/EventDispatcher/Event/ExerciseCompleted.php b/vendor/behat/behat/src/Behat/Testwork/EventDispatcher/Event/ExerciseCompleted.php
new file mode 100644 (file)
index 0000000..026592b
--- /dev/null
@@ -0,0 +1,34 @@
+<?php
+
+/*
+ * This file is part of the Behat Testwork.
+ * (c) Konstantin Kudryashov <ever.zet@gmail.com>
+ *
+ * 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;
+use Symfony\Component\EventDispatcher\Event;
+
+/**
+ * Represents an exercise event.
+ *
+ * @author Konstantin Kudryashov <ever.zet@gmail.com>
+ */
+abstract class ExerciseCompleted extends Event
+{
+    const BEFORE = 'tester.exercise_completed.before';
+    const AFTER_SETUP = 'tester.exercise_completed.after_setup';
+    const BEFORE_TEARDOWN = 'tester.exercise_completed.before_teardown';
+    const AFTER = 'tester.exercise_completed.after';
+
+    /**
+     * Returns specification iterators.
+     *
+     * @return SpecificationIterator[]
+     */
+    abstract public function getSpecificationIterators();
+}