using System.Reflection; using StellaOps.Infrastructure.Postgres.Testing; using StellaOps.Scanner.Storage; using Xunit; namespace StellaOps.Scanner.ProofSpine.Tests; public sealed class ScannerProofSpinePostgresFixture : PostgresIntegrationFixture, ICollectionFixture { protected override Assembly? GetMigrationAssembly() => typeof(ScannerStorageOptions).Assembly; protected override string GetModuleName() => "Scanner.ProofSpine.Tests"; } [CollectionDefinition("scanner-proofspine-postgres")] public sealed class ScannerProofSpinePostgresCollection : ICollectionFixture { }