Functional\Tests\SelectTest::testPassNonCallable PHP 메소드

testPassNonCallable() 공개 메소드

public testPassNonCallable ( $functionName )
    public function testPassNonCallable($functionName)
    {
        $this->expectArgumentError(sprintf("Argument 2 passed to %s() must be callable", $functionName));
        $functionName($this->list, 'undefinedFunction');
    }