コード例 #1
0
ファイル: MutableArrayTest.php プロジェクト: mrcoco/Arrayzy
 /**
  * @dataProvider simpleArrayProvider
  */
 public function testGetKeys(array $array)
 {
     $ma = new MutableArray($array);
     $keys = array_keys($array);
     $this->assertTrue($keys === $ma->getKeys());
 }