Functional\Tests\SortTest::testPassNoCollection PHP Method

testPassNoCollection() public method

    public function testPassNoCollection()
    {
        $this->expectArgumentError('sort() expects parameter 1 to be array or instance of Traversable');
        F\sort('invalidCollection', 'strlen');
    }