/**
  * Test set order by.
  */
 public function testSetOrderBy()
 {
     $collection = new WritersCollection($this->connection, $this->pool);
     $collection->orderBy('`writers`.`created_at` DESC');
     $this->assertEquals($collection->getOrderBy(), '`writers`.`created_at` DESC');
 }