mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
14 lines
513 B
C#
14 lines
513 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Threading.Tasks;
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace AzureAIAgentsPersistent.IntegrationTests;
|
|
|
|
public class AzureAIAgentsPersistentStructuredOutputRunTests() : StructuredOutputRunTests<AzureAIAgentsPersistentFixture>(() => new())
|
|
{
|
|
[Fact(Skip = "Fails intermittently, at build agent")]
|
|
public override Task RunWithResponseFormatReturnsExpectedResultAsync() =>
|
|
base.RunWithResponseFormatReturnsExpectedResultAsync();
|
|
}
|