rename to unit tests

This commit is contained in:
Korolev Dmitry
2025-11-04 19:00:34 +01:00
parent 1538c631c8
commit 9bbfab6c1e
7 changed files with 7 additions and 7 deletions
@@ -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
{