EclipseReporter::paintGroupStart PHP Метод

paintGroupStart() публичный Метод

Stashes the name of the test suite. Starts test coverage if enabled.
public paintGroupStart ( string $group, integer $size )
$group string Name of test or other label.
$size integer Number of test cases starting.
    public function paintGroupStart($group, $size)
    {
        $this->group = self::escapeVal($group);
        if ($this->cc) {
            if (extension_loaded('xdebug')) {
                xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
            }
        }
    }