using SIGCM2.TestSupport; using Xunit; namespace SIGCM2.Application.Tests; /// /// Declares the "Database" xUnit collection backed by a single shared SqlTestFixture. /// All test classes decorated with [Collection("Database")] share one fixture instance /// per test run — eliminating concurrent Respawner collisions. /// [CollectionDefinition("Database")] public sealed class DatabaseCollection : ICollectionFixture { // Intentionally empty: this class only exists to declare the collection/fixture binding. }