mageekguy\atoum\test::methodIsIgnored PHP Метод

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

public methodIsIgnored ( $methodName, array $tags = [] )
$tags array
    public function methodIsIgnored($methodName, array $tags = array())
    {
        $isIgnored = $this->checkMethod($methodName)->ignore;
        if ($isIgnored === false) {
            if (isset($this->testMethods[$methodName]['ignore']) === true) {
                $isIgnored = $this->testMethods[$methodName]['ignore'];
            }
            if ($isIgnored === false && $tags) {
                $isIgnored = sizeof($methodTags = $this->getMethodTags($methodName)) <= 0 || sizeof(array_intersect($tags, $methodTags)) <= 0;
            }
        }
        return $isIgnored;
    }
test