grav/tests/_support/Helper/Unit.php
2016-01-29 18:32:52 +01:00

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
}
}