20 lines
656 B
C#
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>
|
|
{
|
|
}
|
|
|