Pinq\Tests\Integration\Collection\RemoveRangeTest::testThatRemoveRangeRemovesAllValuesFromCollection PHP Метод

testThatRemoveRangeRemovesAllValuesFromCollection() публичный Метод

public testThatRemoveRangeRemovesAllValuesFromCollection ( Pinq\ICollection $collection, array $data )
$collection Pinq\ICollection
$data array
    public function testThatRemoveRangeRemovesAllValuesFromCollection(\Pinq\ICollection $collection, array $data)
    {
        $collection->removeRange($collection->asArray());
        $this->assertMatchesValues($collection, []);
    }