Pinq\Tests\Integration\Collection\RemoveWhereTest::testThatRemoveWhereTrueRemovesAllItems PHP Метод

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

public testThatRemoveWhereTrueRemovesAllItems ( Pinq\ICollection $collection, array $data )
$collection Pinq\ICollection
$data array
    public function testThatRemoveWhereTrueRemovesAllItems(\Pinq\ICollection $collection, array $data)
    {
        $collection->removeWhere(function () {
            return true;
        });
        $this->assertMatchesValues($collection, []);
    }