Neos\Neos\Tests\Functional\FlowQueryOperations\SortOperationTest::invalidSortDirectionCausesException PHP Method

invalidSortDirectionCausesException() public method

    public function invalidSortDirectionCausesException()
    {
        $flowQuery = new \Neos\Eel\FlowQuery\FlowQuery([]);
        $operation = new SortOperation();
        $operation->evaluate($flowQuery, ['title', 'FOO']);
    }