using System.Reflection; using StellaOps.Concelier.Persistence.Postgres; using StellaOps.Infrastructure.Postgres.Testing; using Xunit; namespace StellaOps.Concelier.Testing; /// /// PostgreSQL integration test fixture for the Concelier module. /// Runs migrations from embedded resources and provides test isolation via schema truncation. /// public sealed class ConcelierPostgresFixture : PostgresIntegrationFixture, ICollectionFixture { protected override Assembly? GetMigrationAssembly() => typeof(ConcelierDataSource).Assembly; protected override string GetModuleName() => "Concelier"; }