/**
  * @test
  */
 public function cleanupTest()
 {
     Manager::cleanup();
 }
 /**
  * A maintenance task that will be performed when the server becomes idle
  */
 public function runMaintenance()
 {
     $this->coordinator->commitDatabases();
     Manager::cleanup();
 }