// Copyright (c) Microsoft. All rights reserved. using System; namespace Microsoft.Agents.AI.Mcp.UnitTests; /// /// Minimal empty for in-memory fixtures that don't use DI. /// internal sealed class EmptyServiceProvider : IServiceProvider { public static EmptyServiceProvider Instance { get; } = new(); public object? GetService(Type serviceType) => null; }