public function testDefaultSort()
 {
     $query = new DataQuery('DataQueryTest_E');
     $result = $query->column('Title');
     $this->assertEquals(array('First', 'Second', 'Last'), $result);
 }
 /**
  * Returns an array of a single field value for all items in the list.
  *
  * @param string $colName
  * @return array
  */
 public function column($colName = "ID")
 {
     return $this->dataQuery->column($colName);
 }