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

testThatExtendedClassIsMaintainedAfterWhereQuery() public method

public testThatExtendedClassIsMaintainedAfterWhereQuery ( Pinq\ICollection $collection )
$collection Pinq\ICollection
    public function testThatExtendedClassIsMaintainedAfterWhereQuery(\Pinq\ICollection $collection)
    {
        $collection = $collection->where(function () {
            return true;
        });
        $this->assertExtended($collection);
    }