public function testIsEmpty()
 {
     $collection = new BasicCollection();
     self::assertTrue($collection->isEmpty());
     $collection->add('foo');
     self::assertFalse($collection->isEmpty());
 }