Autoload::autoload_phpunit PHP Метод

autoload_phpunit() публичный статический Метод

public static autoload_phpunit ( $name )
    public static function autoload_phpunit($name)
    {
        $file = 'Test/' . str_replace('_', '/', str_replace('Test\\', '', $name)) . '.php';
        if (file_exists($file)) {
            include $file;
        }
    }