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

testThatExtendedClassIsMaintainedAfterJoinQuery() public method

public testThatExtendedClassIsMaintainedAfterJoinQuery ( Pinq\ICollection $collection )
$collection Pinq\ICollection
    public function testThatExtendedClassIsMaintainedAfterJoinQuery(\Pinq\ICollection $collection)
    {
        $collection = $collection->join([])->on(function () {
            return true;
        })->to(function () {
        });
        $this->assertExtended($collection);
    }