/**
  * Test if collection reads settings from type.
  */
 public function testTypeCollectionReadsSettingsFromType()
 {
     $collection = new WritersCollection($this->connection, $this->pool);
     $this->assertEquals($collection->getTableName(), 'writers');
     $this->assertEquals($collection->getTimestampField(), 'updated_at');
     $this->assertEquals($collection->getOrderBy(), '`writers`.`id` DESC');
 }