mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
30 lines
1.1 KiB
C#
30 lines
1.1 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Threading.Tasks;
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace AzureAIAgentsPersistent.IntegrationTests;
|
|
|
|
public class AzureAIAgentsPersistentStructuredOutputRunTests() : StructuredOutputRunTests<AzureAIAgentsPersistentFixture>(() => new())
|
|
{
|
|
private const string SkipReason = "Fails intermittently on the build agent/CI";
|
|
|
|
public override Task RunWithResponseFormatReturnsExpectedResultAsync()
|
|
{
|
|
Assert.SkipWhen(SkipReason is not null, SkipReason ?? string.Empty);
|
|
return base.RunWithResponseFormatReturnsExpectedResultAsync();
|
|
}
|
|
|
|
public override Task RunWithGenericTypeReturnsExpectedResultAsync()
|
|
{
|
|
Assert.SkipWhen(SkipReason is not null, SkipReason ?? string.Empty);
|
|
return base.RunWithGenericTypeReturnsExpectedResultAsync();
|
|
}
|
|
|
|
public override Task RunWithPrimitiveTypeReturnsExpectedResultAsync()
|
|
{
|
|
Assert.SkipWhen(SkipReason is not null, SkipReason ?? string.Empty);
|
|
return base.RunWithPrimitiveTypeReturnsExpectedResultAsync();
|
|
}
|
|
}
|