| 1 | <?php | ||
| 11 | trait Hook | ||
| 12 | { | ||
| 13 | /** | ||
| 14 | * @BeforeSuite | ||
| 15 | */ | ||
| 16 | public static function beforeSuiteFixturesCleanup() | ||
| 20 | |||
| 21 | /** | ||
| 22 | * @AfterSuite | ||
| 23 | */ | ||
| 24 | public static function afterSuiteFixturesCleanup() | ||
| 28 | |||
| 29 | /** | ||
| 30 | * @BeforeFeature | ||
| 31 | */ | ||
| 32 | public static function beforeFeatureFixturesCleanup() | ||
| 36 | |||
| 37 | /** | ||
| 38 | * @AfterFeature | ||
| 39 | */ | ||
| 40 | public static function afterFeatureFixturesCleanup() | ||
| 44 | |||
| 45 | /** | ||
| 46 | * @BeforeScenario | ||
| 47 | */ | ||
| 48 | public function beforeScenarioFixturesCleanup() | ||
| 52 | |||
| 53 | /** | ||
| 54 | * @AfterScenario | ||
| 55 | */ | ||
| 56 | public function afterScenarioFixturesCleanup() | ||
| 60 | |||
| 61 | /** | ||
| 62 | * @BeforeStep | ||
| 63 | */ | ||
| 64 | public function beforeStepFixturesCleanup() | ||
| 68 | |||
| 69 | /** | ||
| 70 | * @AfterStep | ||
| 71 | */ | ||
| 72 | public function afterStepFixturesCleanup() | ||
| 76 | } | ||
| 77 |