rename to unit tests

This commit is contained in:
Korolev Dmitry
2025-11-04 19:00:34 +01:00
Unverified
parent 1538c631c8
commit 9bbfab6c1e
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -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" />
@@ -22,6 +22,6 @@
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.Agents.AI.Hosting.AzureStorage.Tests" />
<InternalsVisibleTo Include="Microsoft.Agents.AI.Hosting.AzureStorage.UnitTests" />
</ItemGroup>
</Project>
@@ -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"/>.
@@ -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.
@@ -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
{
@@ -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
{