mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
rename to unit tests
This commit is contained in:
@@ -279,7 +279,6 @@
|
||||
<Project Path="tests/AgentConformance.IntegrationTests/AgentConformance.IntegrationTests.csproj" />
|
||||
<Project Path="tests/AzureAIAgentsPersistent.IntegrationTests/AzureAIAgentsPersistent.IntegrationTests.csproj" />
|
||||
<Project Path="tests/CopilotStudio.IntegrationTests/CopilotStudio.IntegrationTests.csproj" />
|
||||
<Project Path="tests/Microsoft.Agents.AI.Hosting.AzureStorage.Tests/Microsoft.Agents.AI.Hosting.AzureStorage.Tests.csproj" />
|
||||
<Project Path="tests/Microsoft.Agents.AI.Mem0.IntegrationTests/Microsoft.Agents.AI.Mem0.IntegrationTests.csproj" />
|
||||
<Project Path="tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.csproj" />
|
||||
<Project Path="tests/OpenAIAssistant.IntegrationTests/OpenAIAssistant.IntegrationTests.csproj" />
|
||||
@@ -292,6 +291,7 @@
|
||||
<Project Path="tests/Microsoft.Agents.AI.AzureAI.UnitTests/Microsoft.Agents.AI.AzureAI.UnitTests.csproj" />
|
||||
<Project Path="tests/Microsoft.Agents.AI.Hosting.A2A.Tests/Microsoft.Agents.AI.Hosting.A2A.Tests.csproj" />
|
||||
<Project Path="tests/Microsoft.Agents.AI.Hosting.OpenAI.UnitTests/Microsoft.Agents.AI.Hosting.OpenAI.UnitTests.csproj" />
|
||||
<Project Path="tests/Microsoft.Agents.AI.Hosting.AzureStorage.UnitTests/Microsoft.Agents.AI.Hosting.AzureStorage.UnitTests.csproj" />
|
||||
<Project Path="tests/Microsoft.Agents.AI.Hosting.UnitTests/Microsoft.Agents.AI.Hosting.UnitTests.csproj" />
|
||||
<Project Path="tests/Microsoft.Agents.AI.Mem0.UnitTests/Microsoft.Agents.AI.Mem0.UnitTests.csproj" />
|
||||
<Project Path="tests/Microsoft.Agents.AI.OpenAI.UnitTests/Microsoft.Agents.AI.OpenAI.UnitTests.csproj" />
|
||||
|
||||
+1
-1
@@ -22,6 +22,6 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<InternalsVisibleTo Include="Microsoft.Agents.AI.Hosting.AzureStorage.Tests" />
|
||||
<InternalsVisibleTo Include="Microsoft.Agents.AI.Hosting.AzureStorage.UnitTests" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ using Microsoft.Agents.AI.Hosting.AzureStorage.Blob;
|
||||
using Microsoft.Extensions.AI;
|
||||
using Xunit.Abstractions;
|
||||
|
||||
namespace Microsoft.Agents.AI.Hosting.AzureStorage.Tests;
|
||||
namespace Microsoft.Agents.AI.Hosting.AzureStorage.UnitTests;
|
||||
|
||||
/// <summary>
|
||||
/// Tests for <see cref="AzureBlobAgentThreadStore"/>.
|
||||
+1
-1
@@ -7,7 +7,7 @@ using Azure;
|
||||
using Azure.Storage.Blobs;
|
||||
using Skip = Xunit.Skip;
|
||||
|
||||
namespace Microsoft.Agents.AI.Hosting.AzureStorage.Tests;
|
||||
namespace Microsoft.Agents.AI.Hosting.AzureStorage.UnitTests;
|
||||
|
||||
/// <summary>
|
||||
/// Helper class to check if Azurite (Azure Storage Emulator) is available and running.
|
||||
+1
-1
@@ -8,7 +8,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Extensions.AI;
|
||||
|
||||
namespace Microsoft.Agents.AI.Hosting.AzureStorage.Tests.Mock;
|
||||
namespace Microsoft.Agents.AI.Hosting.AzureStorage.UnitTests.Mock;
|
||||
|
||||
internal sealed class MockChatClient : IChatClient
|
||||
{
|
||||
+2
-2
@@ -4,12 +4,12 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Agents.AI.Hosting.AzureStorage.Tests.Mock;
|
||||
using Microsoft.Agents.AI.Hosting.AzureStorage.UnitTests.Mock;
|
||||
using Microsoft.Extensions.AI;
|
||||
using Xunit.Abstractions;
|
||||
using ThreadStore = Microsoft.Agents.AI.Hosting.AgentThreadStore;
|
||||
|
||||
namespace Microsoft.Agents.AI.Hosting.AzureStorage.Tests;
|
||||
namespace Microsoft.Agents.AI.Hosting.AzureStorage.UnitTests;
|
||||
|
||||
internal sealed class TestRunner
|
||||
{
|
||||
Reference in New Issue
Block a user