clearCookies(); } protected function getPackageProviders($app) { return [ NamiServiceProvider::class ]; } public function getAnnotations(): array { return []; } public function fakeJson(string $file, array $data = []): string { ob_start(); include(__DIR__.'/json/'.$file); return ob_get_clean(); } public function fakeGenders() { return [ 'https://nami.dpsg.de/ica/rest/baseadmin/geschlecht' => Http::response($this->fakeJson('genders.json'), 200) ]; } private function clearCookies(): void { foreach (glob(__DIR__.'/../.cookies/*') as $file) { unlink($file); } } }