Files
git.stella-ops.org/src/Scanner/__Tests/StellaOps.Scanner.ProofSpine.Tests/ScannerProofSpinePostgresFixture.cs
StellaOps Bot 8137503221 up
2025-12-15 09:23:28 +02:00

20 lines
656 B
C#

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<ScannerProofSpinePostgresFixture>
{
protected override Assembly? GetMigrationAssembly() => typeof(ScannerStorageOptions).Assembly;
protected override string GetModuleName() => "Scanner.ProofSpine.Tests";
}
[CollectionDefinition("scanner-proofspine-postgres")]
public sealed class ScannerProofSpinePostgresCollection : ICollectionFixture<ScannerProofSpinePostgresFixture>
{
}