Ejemplo n.º 1
0
 /**
  *
  */
 function test_rewind_iterator()
 {
     $config = new Config(new Config(['foo' => 'bar', 'baz' => 'bat']));
     $this->assertEquals('bar', $config->current());
     $config->next();
     $this->assertEquals('bat', $config->current());
     $config->rewind();
     $this->assertEquals('bar', $config->current());
 }