Files
Grav/tests/_support/Helper/Unit.php

14 lines
262 B
PHP
Raw Normal View History

2016-01-05 11:01:02 +01:00
<?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
}
2016-01-05 11:01:02 +01:00
}