SimpleReporterDecorator::shouldInvoke PHP Method

shouldInvoke() public method

The reporter has a veto on what should be run.
public shouldInvoke ( string $test_case_name, string $method ) : boolean
$test_case_name string Name of test case.
$method string Name of test method.
return boolean True if test should be run.
    public function shouldInvoke($test_case_name, $method)
    {
        return $this->reporter->shouldInvoke($test_case_name, $method);
    }