mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
24 lines
845 B
C#
24 lines
845 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Threading.Tasks;
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace OpenAIResponse.IntegrationTests;
|
|
|
|
public class OpenAIResponseStoreTrueRunStreamingTests() : RunStreamingTests<OpenAIResponseFixture>(() => new(store: true))
|
|
{
|
|
private const string SkipReason = "OpenAIResponse does not support empty messages";
|
|
[Fact(Skip = SkipReason)]
|
|
public override Task RunWithNoMessageDoesNotFailAsync() =>
|
|
Task.CompletedTask;
|
|
}
|
|
|
|
public class OpenAIResponseStoreFalseRunStreamingTests() : RunStreamingTests<OpenAIResponseFixture>(() => new(store: false))
|
|
{
|
|
private const string SkipReason = "OpenAIResponse does not support empty messages";
|
|
|
|
[Fact(Skip = SkipReason)]
|
|
public override Task RunWithNoMessageDoesNotFailAsync() =>
|
|
Task.CompletedTask;
|
|
}
|