Beispiel #1
0
 /**
  * @dataProvider simpleArrayProvider
  */
 public function testGetValues(array $array)
 {
     $ma = new ImmutableArray($array);
     $values = array_values($array);
     $this->assertTrue($values === $ma->getValues());
 }