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