for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SmartWeb\ModuleTesting\Generator\Test;
use Eloquent\Enumeration\AbstractMultiton;
/**
* Class CodeceptionTestType
*
* @method static static test()
* @method static static cest()
* @method static static cept()
* @package SmartWeb\ModuleTesting\Generator\Test
*/
final class CodeceptionTestType extends AbstractMultiton
{
protected static function initializeMembers()
new static('test');
new static('cest');
new static('cept');
}