Pinq\Tests\Integration\Collection\ClearTest::testThatClearRemovesAllItems PHP Method

testThatClearRemovesAllItems() public method

public testThatClearRemovesAllItems ( Pinq\ICollection $collection, array $data )
$collection Pinq\ICollection
$data array
    public function testThatClearRemovesAllItems(\Pinq\ICollection $collection, array $data)
    {
        $collection->clear();
        $this->assertCount(0, $collection);
        $this->assertMatchesValues($collection, []);
    }