* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Behat\Behat\EventDispatcher\Event; /** * Represents an example event. * * @author Konstantin Kudryashov */ interface ExampleTested { const BEFORE = 'tester.example_tested.before'; const AFTER_SETUP = 'tester.example_tested.after_setup'; const BEFORE_TEARDOWN = 'tester.example_tested.before_teardown'; const AFTER = 'tester.example_tested.after'; }