Ejemplo n.º 1
0
 public function testGetSortDirections()
 {
     $column = new Column($this->table, 'test');
     $this->table->setInput(['sort' => 'test', 'sort_dir' => 'asc']);
     $this->assertEquals('asc', $column->getCurrentSortDirection());
     $this->assertEquals('desc', $column->getNextSortDirection());
 }