grav/tests/_support/Helper/Unit.php

64 lines
1003 B
PHP
Raw Permalink Normal View History

2016-01-05 11:01:02 +01:00
<?php
namespace Helper;
use Codeception;
2019-10-14 09:57:26 +02:00
2016-01-05 11:01:02 +01:00
// here you can define custom actions
// all public methods declared in helper class will be available in $I
/**
* Class Unit
* @package Helper
*/
class Unit extends Codeception\Module
2016-01-05 11:01:02 +01:00
{
/**
* HOOK: used after configuration is loaded
*/
2019-10-14 09:57:26 +02:00
public function _initialize()
{
}
/**
* HOOK: on every Actor class initialization
*/
2019-10-14 09:57:26 +02:00
public function _cleanup()
{
}
/**
* HOOK: before suite
*
* @param array $settings
*/
2019-10-14 09:57:26 +02:00
public function _beforeSuite($settings = [])
{
}
/**
* HOOK: after suite
**/
2019-10-14 09:57:26 +02:00
public function _afterSuite()
{
}
/**
* HOOK: before each step
*
* @param Codeception\Step $step*
*/
2019-10-14 09:57:26 +02:00
public function _beforeStep(Codeception\Step $step)
{
}
/**
* HOOK: after each step
*
* @param Codeception\Step $step
*/
2019-10-14 09:57:26 +02:00
public function _afterStep(Codeception\Step $step)
{
}
2016-01-05 11:01:02 +01:00
}