/**
  * Tear down the test environment.
  */
 public function tearDown()
 {
     if ($this->connection->tableExists('writers')) {
         $this->connection->dropTable('writers');
     }
     parent::tearDown();
 }