// Copyright (c) Microsoft. All rights reserved. namespace Microsoft.Extensions.AI.Agents.Runtime.Storage.CosmosDB.Tests; /// /// Skip test if running on CosmosDB emulator. /// [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = false)] public sealed class SkipOnEmulatorFactAttribute : FactAttribute { /// /// Initializes a new instance of the class. /// public SkipOnEmulatorFactAttribute() { if (CosmosDBTestConstants.UseEmulatorForTesting) { this.Skip = "Skipping test on CosmosDB emulator."; } } }