for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SmartWeb\ModuleTesting\Util;
use Illuminate\Support\Str;
use SmartWeb\ModuleTesting\Generator\CodeceptionTestType;
/**
* Class Template
*
* @package SmartWeb\ModuleTesting\Util
*/
final class Template
{
* @inheritDoc
private function __construct()
}
* @param string $suite
* @param CodeceptionTestType $type
* @param string $prefix
* @return string
public static function getBaseTestClass(string $suite, CodeceptionTestType $type, string $prefix = 'Base') : string
return $prefix . Str::studly($suite) . Str::studly((string)$type);