DataSift\Storyplayer\TestEnvironmentsLib\TestEnvironmentConfig::validateGroupType PHP Method

validateGroupType() protected method

protected validateGroupType ( $groupIndex, $typeName )
    protected function validateGroupType($groupIndex, $typeName)
    {
        $className = "DataSift\\Storyplayer\\HostLib\\" . $typeName;
        if (!class_exists($className)) {
            throw new E4xx_InvalidTestEnvironmentGroupType($groupIndex, $typeName, $className);
        }
    }