This commit is contained in:
Chris
2025-10-01 10:03:55 -07:00
committed by GitHub
Unverified
parent 364188c44f
commit 79414f9298
3 changed files with 15 additions and 15 deletions
@@ -18,7 +18,7 @@ public sealed class AzureAgentProviderTest(ITestOutputHelper output) : Integrati
{
private AzureAIConfiguration? _configuration;
[Fact]
[Fact(Skip = "Needs configuration")]
public async Task ConversationTestAsync()
{
// Arrange
@@ -48,7 +48,7 @@ public sealed class AzureAgentProviderTest(ITestOutputHelper output) : Integrati
Assert.Equal(messages[3].Text, message.Text);
}
[Fact]
[Fact(Skip = "Needs configuration")]
public async Task GetAgentTestAsync()
{
// Arrange
@@ -15,16 +15,16 @@ namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests;
public sealed class DeclarativeCodeGenTest(ITestOutputHelper output) : WorkflowTest(output)
{
[Theory]
[InlineData("SendActivity.yaml", "SendActivity.json")]
[InlineData("InvokeAgent.yaml", "InvokeAgent.json")]
[InlineData("ConversationMessages.yaml", "ConversationMessages.json")]
[InlineData("SendActivity.yaml", "SendActivity.json", Skip = "Needs configuration")]
[InlineData("InvokeAgent.yaml", "InvokeAgent.json", Skip = "Needs configuration")]
[InlineData("ConversationMessages.yaml", "ConversationMessages.json", Skip = "Needs configuration")]
public Task ValidateCaseAsync(string workflowFileName, string testcaseFileName) =>
this.RunWorkflowAsync(Path.Combine("Workflows", workflowFileName), testcaseFileName);
[Theory]
[InlineData("Marketing.yaml", "Marketing.json")]
[InlineData("MathChat.yaml", "MathChat.json")]
[InlineData("DeepResearch.yaml", "DeepResearch.json")]
[InlineData("Marketing.yaml", "Marketing.json", Skip = "Needs configuration")]
[InlineData("MathChat.yaml", "MathChat.json", Skip = "Needs configuration")]
[InlineData("DeepResearch.yaml", "DeepResearch.json", Skip = "Needs configuration")]
[InlineData("HumanInLoop.yaml", "HumanInLoop.json", Skip = "TODO")]
public Task ValidateScenarioAsync(string workflowFileName, string testcaseFileName) =>
this.RunWorkflowAsync(Path.Combine(GetRepoFolder(), "workflow-samples", workflowFileName), testcaseFileName);
@@ -15,17 +15,17 @@ namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests;
public sealed class DeclarativeWorkflowTest(ITestOutputHelper output) : WorkflowTest(output)
{
[Theory]
[InlineData("SendActivity.yaml", "SendActivity.json")]
[InlineData("InvokeAgent.yaml", "InvokeAgent.json")]
[InlineData("ConversationMessages.yaml", "ConversationMessages.json")]
[InlineData("SendActivity.yaml", "SendActivity.json", Skip = "Needs configuration")]
[InlineData("InvokeAgent.yaml", "InvokeAgent.json", Skip = "Needs configuration")]
[InlineData("ConversationMessages.yaml", "ConversationMessages.json", Skip = "Needs configuration")]
public Task ValidateCaseAsync(string workflowFileName, string testcaseFileName) =>
this.RunWorkflowAsync(Path.Combine("Workflows", workflowFileName), testcaseFileName);
[Theory]
[InlineData("Marketing.yaml", "Marketing.json")]
[InlineData("MathChat.yaml", "MathChat.json")]
[InlineData("DeepResearch.yaml", "DeepResearch.json")]
[InlineData("HumanInLoop.yaml", "HumanInLoop.json", Skip = "TODO")]
[InlineData("Marketing.yaml", "Marketing.json", Skip = "Needs configuration")]
[InlineData("MathChat.yaml", "MathChat.json", Skip = "Needs configuration")]
[InlineData("DeepResearch.yaml", "DeepResearch.json", Skip = "Needs configuration")]
[InlineData("HumanInLoop.yaml", "HumanInLoop.json", Skip = "Needs test support")]
public Task ValidateScenarioAsync(string workflowFileName, string testcaseFileName) =>
this.RunWorkflowAsync(Path.Combine(GetRepoFolder(), "workflow-samples", workflowFileName), testcaseFileName);