public function testClearMakesCollectionEmpty()
 {
     $collection = new BasicCollection();
     $collection->add('foo');
     $collection->clear();
     self::assertEquals(0, $collection->size());
 }