%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/ppaobm/vendor/codeception/base/src/Codeception/ |
Upload File : |
<?php
namespace Codeception;
/**
* Contains all events dispatched by Codeception.
*
* @author tiger-seo <tiger.seo@gmail.com>
*/
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.
*/
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.
*/
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.
*/
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.
*/
const SUITE_AFTER = 'suite.after';
/**
* The event listener method receives a {@link Codeception\Event\TestEvent} instance.
*/
const TEST_START = 'test.start';
/**
* The event listener method receives a {@link Codeception\Event\TestEvent} instance.
*/
const TEST_BEFORE = 'test.before';
/**
* The event listener method receives a {@link Codeception\Event\StepEvent} instance.
*/
const STEP_BEFORE = 'step.before';
/**
* The event listener method receives a {@link Codeception\Event\StepEvent} instance.
*/
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.
*/
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.
*/
const TEST_ERROR = 'test.error';
/**
* The event listener method receives a {@link Codeception\Event\TestEvent} instance.
*/
const TEST_PARSED = 'test.parsed';
/**
* The event listener method receives a {@link Codeception\Event\FailEvent} instance.
*/
const TEST_INCOMPLETE = 'test.incomplete';
/**
* The event listener method receives a {@link Codeception\Event\FailEvent} instance.
*/
const TEST_SKIPPED = 'test.skipped';
/**
* The event listener method receives a {@link Codeception\Event\FailEvent} instance.
*/
const TEST_WARNING = 'test.warning';
/**
* The event listener method receives a {@link Codeception\Event\TestEvent} instance.
*/
const TEST_SUCCESS = 'test.success';
/**
* The event listener method receives a {@link Codeception\Event\TestEvent} instance.
*/
const TEST_AFTER = 'test.after';
/**
* The event listener method receives a {@link Codeception\Event\TestEvent} instance.
*/
const TEST_END = 'test.end';
/**
* The event listener method receives a {@link Codeception\Event\FailEvent} instance.
*/
const TEST_FAIL_PRINT = 'test.fail.print';
/**
* The event listener method receives a {@link Codeception\Event\PrintResultEvent} instance.
*/
const RESULT_PRINT_AFTER = 'result.print.after';
}