Beispiel #1
0
 /**
  * @dataProvider simpleArrayProvider
  */
 public function testGetKeys(array $array)
 {
     $ma = new ImmutableArray($array);
     $keys = array_keys($array);
     $this->assertTrue($keys === $ma->getKeys());
 }