database = new \StdClass; $config->database->host = 'localhost'; $config->database->port = 27017; $config->database->name = 'test'; $this->databaseConnection = new \Szurubooru\DatabaseConnection($config); $this->upgradeService = new \Szurubooru\UpgradeService($this->databaseConnection); $this->upgradeService->prepareForUsage(); } public function tearDown() { $this->upgradeService->removeAllData(); } }