mirror of
https://github.com/getgrav/grav.git
synced 2025-02-20 19:56:53 +01:00
14 lines
262 B
PHP
14 lines
262 B
PHP
<?php
|
|
namespace Helper;
|
|
|
|
// here you can define custom actions
|
|
// all public methods declared in helper class will be available in $I
|
|
|
|
class Unit extends \Codeception\Module
|
|
{
|
|
public function _afterSuite()
|
|
{
|
|
// Tear down after test suite
|
|
}
|
|
}
|