request('GET', '/api/docs.html'); $this->assertResponseIsSuccessful(); } public function testOpenAPIJsonLdAccessible(): void { $client = static::createClient(); // Test: OpenAPI JSON-LD ist öffentlich zugänglich $client->request('GET', '/api/docs.jsonld'); $this->assertResponseIsSuccessful(); } }