Ejemplo n.º 1
0
 public function testSetSortWithInput()
 {
     $this->config->shouldReceive('getOption')->never()->shouldReceive('getDataModel')->never();
     $this->dataTable->setSort(array('field' => 'foo', 'direction' => 'bar'));
     $this->assertEquals($this->dataTable->getSort(), array('field' => 'foo', 'direction' => 'desc'));
 }