renames / fixes

This commit is contained in:
Korolev Dmitry
2025-11-04 18:47:35 +01:00
Unverified
parent 448785b6b3
commit 1538c631c8
6 changed files with 7 additions and 9 deletions
+1 -1
View File
@@ -279,7 +279,7 @@
<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/Hosting.AgentThreadStore.IntegrationTests/Hosting.AgentThreadStore.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" />
@@ -22,6 +22,6 @@
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Hosting.AgentThreadStore.IntegrationTests" />
<InternalsVisibleTo Include="Microsoft.Agents.AI.Hosting.AzureStorage.Tests" />
</ItemGroup>
</Project>
@@ -8,7 +8,7 @@ using Microsoft.Agents.AI.Hosting.AzureStorage.Blob;
using Microsoft.Extensions.AI;
using Xunit.Abstractions;
namespace Hosting.AgentThreadStore.IntegrationTests;
namespace Microsoft.Agents.AI.Hosting.AzureStorage.Tests;
/// <summary>
/// Tests for <see cref="AzureBlobAgentThreadStore"/>.
@@ -7,7 +7,7 @@ using Azure;
using Azure.Storage.Blobs;
using Skip = Xunit.Skip;
namespace Hosting.AgentThreadStore.IntegrationTests;
namespace Microsoft.Agents.AI.Hosting.AzureStorage.Tests;
/// <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 Hosting.AgentThreadStore.IntegrationTests.Mock;
namespace Microsoft.Agents.AI.Hosting.AzureStorage.Tests.Mock;
internal sealed class MockChatClient : IChatClient
{
@@ -4,14 +4,12 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Hosting.AgentThreadStore.IntegrationTests.Mock;
using Microsoft.Agents.AI;
using Microsoft.Agents.AI.Hosting;
using Microsoft.Agents.AI.Hosting.AzureStorage.Tests.Mock;
using Microsoft.Extensions.AI;
using Xunit.Abstractions;
using ThreadStore = Microsoft.Agents.AI.Hosting.AgentThreadStore;
namespace Hosting.AgentThreadStore.IntegrationTests;
namespace Microsoft.Agents.AI.Hosting.AzureStorage.Tests;
internal sealed class TestRunner
{