function EnvironmentCleaner::cleanDatabase
Remove database entries left over in the fixture database.
Overrides EnvironmentCleanerInterface::cleanDatabase
File
- 
              core/
lib/ Drupal/ Core/ Test/ EnvironmentCleaner.php, line 99  
Class
- EnvironmentCleaner
 - Helper class for cleaning test environments.
 
Namespace
Drupal\Core\TestCode
public function cleanDatabase() {
  $count = $this->doCleanDatabase();
  if ($count > 0) {
    $this->output
      ->write('Leftover tables removed: ' . $count);
  }
  else {
    $this->output
      ->write('No leftover tables to remove.');
  }
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.