Functional\Tests\TailTest::testPassNonCallable PHP Method

testPassNonCallable() public method

public testPassNonCallable ( )
    public function testPassNonCallable()
    {
        $this->expectArgumentError('Argument 2 passed to Functional\\tail() must be callable');
        tail($this->list, 'undefinedFunction');
    }