initializeValidator(APP . '../webroot/docs/openapi.yaml'); } public function testVieSharingGroupById(): void { $this->setAuthToken(AuthKeysFixture::ADMIN_API_KEY); $url = sprintf('%s/%d', self::ENDPOINT, SharingGroupsFixture::SHARING_GROUP_A_ID); $this->get($url); $this->assertResponseOk(); $this->assertResponseContains('"name": "Sharing Group A"'); // TODO: $this->assertRequestMatchesOpenApiSpec(); $this->assertResponseMatchesOpenApiSpec($url); } }