protected override void Act()
            {
                _openApiMetadataCacheProvider.InitializeCache();

                _actualMetadata = _openApiMetadataCacheProvider
                                  .GetAllSectionDocuments(sdk: true)
                                  .ToList();
            }
            protected override void Act()
            {
                _openApiMetadataCacheProvider.InitializeCache();

                _actualMetadata = _openApiMetadataCacheProvider
                                  .GetAllSectionDocuments(sdk: false)
                                  .Where(x => x.Section.Equals(MetadataRouteConstants.Profiles))
                                  .ToList();
            }
            protected override void Act()
            {
                _openApiMetadataCacheProvider.InitializeCache();

                _actualMetadata = _openApiMetadataCacheProvider
                                  .GetAllSectionDocuments(sdk: true)
                                  .Where(x => x.Section.Equals("Extensions"))
                                  .ToList();
            }