/**
  * @covers       CollectionType\Iterator\IteratorAbstract::isEmpty
  */
 public function testIsEmptyForFewValues()
 {
     $this->iterator->add('A');
     $this->iterator->add('B');
     $result = $this->iterator->isEmpty();
     $this->assertFalse($result);
 }