mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
43 lines
1.5 KiB
C#
43 lines
1.5 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Threading.Tasks;
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace CopilotStudio.IntegrationTests;
|
|
|
|
public class CopilotStudioRunStreamingTests() : RunStreamingTests<CopilotStudioFixture>(() => new())
|
|
{
|
|
// Set to null to run the tests.
|
|
private const string ManualVerification = "For manual verification";
|
|
|
|
public override Task SessionMaintainsHistoryAsync()
|
|
{
|
|
Assert.Skip("Copilot Studio does not support session history retrieval, so this test is not applicable.");
|
|
return base.SessionMaintainsHistoryAsync();
|
|
}
|
|
|
|
public override Task RunWithChatMessageReturnsExpectedResultAsync()
|
|
{
|
|
Assert.SkipWhen(ManualVerification is not null, ManualVerification!);
|
|
return base.RunWithChatMessageReturnsExpectedResultAsync();
|
|
}
|
|
|
|
public override Task RunWithChatMessagesReturnsExpectedResultAsync()
|
|
{
|
|
Assert.SkipWhen(ManualVerification is not null, ManualVerification!);
|
|
return base.RunWithChatMessagesReturnsExpectedResultAsync();
|
|
}
|
|
|
|
public override Task RunWithNoMessageDoesNotFailAsync()
|
|
{
|
|
Assert.SkipWhen(ManualVerification is not null, ManualVerification!);
|
|
return base.RunWithNoMessageDoesNotFailAsync();
|
|
}
|
|
|
|
public override Task RunWithStringReturnsExpectedResultAsync()
|
|
{
|
|
Assert.SkipWhen(ManualVerification is not null, ManualVerification!);
|
|
return base.RunWithStringReturnsExpectedResultAsync();
|
|
}
|
|
}
|