/**
  * Test iteration
  */
 protected function test_iteration()
 {
     $this->test_append();
     $this->record();
     $iterations = 0;
     while ($iterations < $this->iterations) {
         self::$array->offsetGet($iterations);
         ++$iterations;
     }
 }