Example #1
0
 /**
  * @dataProvider simpleArrayProvider
  *
  * @param array $array
  */
 public function testSortKeysDesc(array $array)
 {
     $arrayzy = new A($array);
     $resultArrayzy = $arrayzy->sortKeys(SORT_DESC, SORT_REGULAR);
     $resultArray = $array;
     krsort($resultArray, SORT_REGULAR);
     $this->assertMutable($arrayzy, $resultArrayzy, $resultArray);
 }