![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/codeception/codeception/src/Codeception/ |
<?php declare(strict_types=1); namespace Codeception; /** * Contains all events dispatched by Codeception. * * @author tiger-seo <[email protected]> */ final class Events { /** * Private constructor. This class cannot be instantiated. */ private function __construct() { } /** * The <b>MODULE_INIT</b> event occurs before modules are initialized. * * The event listener method receives a {@link \Codeception\Event\SuiteEvent} instance. * * @var string */ public const MODULE_INIT = 'module.init'; /** * The <b>SUITE_INIT</b> event occurs when suite is initialized. * Modules are created and initialized, but Actor class is not loaded. * * The event listener method receives a {@link \Codeception\Event\SuiteEvent} instance. * * @var string */ public const SUITE_INIT = 'suite.init'; /** * The <b>SUITE_BEFORE</b> event occurs before suite is executed. * * The event listener method receives a {@link \Codeception\Event\SuiteEvent} instance. * * @var string */ public const SUITE_BEFORE = 'suite.before'; /** * The <b>SUITE_AFTER</b> event occurs after suite has been executed. * * The event listener method receives a {@link \Codeception\Event\SuiteEvent} instance. * * @var string */ public const SUITE_AFTER = 'suite.after'; /** * The event listener method receives a {@link \Codeception\Event\TestEvent} instance. * * @var string */ public const TEST_START = 'test.start'; /** * The event listener method receives a {@link \Codeception\Event\TestEvent} instance. * * @var string */ public const TEST_BEFORE = 'test.before'; /** * The event listener method receives a {@link \Codeception\Event\StepEvent} instance. * * @var string */ public const STEP_BEFORE = 'step.before'; /** * The event listener method receives a {@link \Codeception\Event\StepEvent} instance. * * @var string */ public const STEP_AFTER = 'step.after'; /** * The <b>TEST_FAIL</b> event occurs whenever test has failed. * * The event listener method receives a {@link \Codeception\Event\FailEvent} instance. * * @var string */ public const TEST_FAIL = 'test.fail'; /** * The <b>TEST_ERROR</b> event occurs whenever test got an error while being executed. * * The event listener method receives a {@link \Codeception\Event\FailEvent} instance. * * @var string */ public const TEST_ERROR = 'test.error'; /** * The event listener method receives a {@link \Codeception\Event\TestEvent} instance. * * @var string */ public const TEST_PARSED = 'test.parsed'; /** * The event listener method receives a {@link \Codeception\Event\FailEvent} instance. * * @var string */ public const TEST_INCOMPLETE = 'test.incomplete'; /** * The event listener method receives a {@link \Codeception\Event\FailEvent} instance. * * @var string */ public const TEST_SKIPPED = 'test.skipped'; /** * The event listener method receives a {@link \Codeception\Event\FailEvent} instance. * * @var string */ public const TEST_WARNING = 'test.warning'; /** * The <b>TEST_USELESS</b> event occurs whenever test does not execute any assertions * or when it calls expectNotToPerformAssertions and then performs some assertion. * * The event listener method receives a {@link \Codeception\Event\FailEvent} instance. * * @var string */ public const TEST_USELESS = 'test.useless'; /** * The event listener method receives a {@link \Codeception\Event\TestEvent} instance. * * @var string */ public const TEST_SUCCESS = 'test.success'; /** * The event listener method receives a {@link \Codeception\Event\TestEvent} instance. * * @var string */ public const TEST_AFTER = 'test.after'; /** * The event listener method receives a {@link \Codeception\Event\TestEvent} instance. * * @var string */ public const TEST_END = 'test.end'; /** * The event listener method receives a {@link \Codeception\Event\FailEvent} instance. * * @var string */ public const TEST_FAIL_PRINT = 'test.fail.print'; /** * The event listener method receives a {@link \Codeception\Event\PrintResultEvent} instance. * * @var string */ public const RESULT_PRINT_AFTER = 'result.print.after'; }