// Copyright (c) Microsoft. All rights reserved. namespace Foundry.Hosting.IntegrationTests.Fixtures; /// /// Provisions a hosted agent that runs the test container in IT_SCENARIO=custom-storage mode. /// The container substitutes the default Responses storage provider with a custom in memory /// implementation so tests can verify that conversation history is read from and written to /// the custom store rather than the platform default. /// public sealed class CustomStorageHostedAgentFixture : HostedAgentFixture { protected override string ScenarioName => "custom-storage"; }