mageekguy\atoum\scripts\runner::excludeMethodsFromCoverage PHP Method

excludeMethodsFromCoverage() public method

public excludeMethodsFromCoverage ( array $methods )
$methods array
    public function excludeMethodsFromCoverage(array $methods)
    {
        $coverage = $this->runner->getCoverage();
        foreach ($methods as $method) {
            $coverage->excludeMethod($method);
        }
        return $this;
    }