getUniqueID(); $this->loadConfig('files_external/tests/config.php'); $this->config['owncloud']['root'] .= '/' . $id; //make sure we have an new empty folder to work in $this->instance = new OwnCloud($this->config['owncloud']); $this->instance->mkdir('/'); } protected function shouldRunConfig(mixed $config): bool { return is_array($config) && ($config['owncloud']['run'] ?? false); } protected function tearDown(): void { if ($this->instance) { $this->instance->rmdir('/'); } parent::tearDown(); } }