Functional\Tests\DropTest::testPassNonCallable PHP Method

testPassNonCallable() public method

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