// Copyright (c) Microsoft. All rights reserved. using AgentConformance.IntegrationTests; namespace OpenAIResponse.IntegrationTests; public class OpenAIResponseStoreTrueInvokeStreamingTests() : RunStreamingAsyncTests(() => new(store: true)) { } public class OpenAIResponseStoreFalseInvokeStreamingTests() : RunStreamingAsyncTests(() => new(store: false)) { }