public function testGetIterator()
 {
     $collection = new BasicCollection();
     $iterator = $collection->getIterator();
     self::assertInstanceOf(\Iterator::class, $iterator);
 }