Esempio n. 1
0
 /**
  * @dataProvider simpleArrayProvider
  */
 public function testCurrent(array $array)
 {
     $ma = new ImmutableArray($array);
     $current = current($array);
     $this->assertTrue($current === $ma->current());
 }