예제 #1
0
 public function testSort()
 {
     $testSet = new \Cx\Core_Modules\Listing\Model\Entity\DataSet($this->testArray);
     $sortedSet = $testSet->sort(array('field1' => SORT_DESC, 'field2' => SORT_ASC));
     $this->assertEquals($this->sortedArray, $sortedSet->toArray());
 }