16 lines
227 B
PHP
16 lines
227 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\Support;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Unit test helper class
|
||
|
|
*
|
||
|
|
* Provides helper methods for unit testing
|
||
|
|
*/
|
||
|
|
class UnitHelper extends \Codeception\Module
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Custom helper methods can be added here
|
||
|
|
*/
|
||
|
|
}
|