Pinq\Tests\Integration\Collection\ExtendedCollectionTest::testThatExtendedClassIsMaintainedAfterOrderByQuery PHP Method

testThatExtendedClassIsMaintainedAfterOrderByQuery() public method

public testThatExtendedClassIsMaintainedAfterOrderByQuery ( Pinq\ICollection $collection )
$collection Pinq\ICollection
    public function testThatExtendedClassIsMaintainedAfterOrderByQuery(\Pinq\ICollection $collection)
    {
        $collection = $collection->orderByAscending(function () {
        })->thenByDescending(function () {
        });
        $this->assertExtended($collection);
    }