ParaTest\Runners\PHPUnit\SuiteLoader::testMatchFilterOptions PHP Method

testMatchFilterOptions() private method

private testMatchFilterOptions ( $className, $name, $group )
    private function testMatchFilterOptions($className, $name, $group)
    {
        if (empty($this->options->filter)) {
            return true;
        }
        $re = substr($this->options->filter, 0, 1) == "/" ? $this->options->filter : "/" . $this->options->filter . "/";
        $fullName = $className . "::" . $name;
        $result = preg_match($re, $fullName);
        return $result;
    }