databaseHost = 'localhost'; $config->databasePort = 27017; $config->databaseName = 'test'; $this->databaseConnection = new \Szurubooru\DatabaseConnection($config); $this->upgradeService = new \Szurubooru\UpgradeService($this->databaseConnection); $this->upgradeService->prepareForUsage(); } public function tearDown() { $this->upgradeService->removeAllData(); } }