Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
Signals CI & Image / signals-ci (push) Has been cancelled
Signals Reachability Scoring & Events / reachability-smoke (push) Has been cancelled
Signals Reachability Scoring & Events / sign-and-upload (push) Has been cancelled
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Reachability Corpus Validation / validate-corpus (push) Has been cancelled
Reachability Corpus Validation / validate-ground-truths (push) Has been cancelled
Scanner Analyzers / Discover Analyzers (push) Has been cancelled
Scanner Analyzers / Validate Test Fixtures (push) Has been cancelled
Reachability Corpus Validation / determinism-check (push) Has been cancelled
Scanner Analyzers / Build Analyzers (push) Has been cancelled
Scanner Analyzers / Test Language Analyzers (push) Has been cancelled
Scanner Analyzers / Verify Deterministic Output (push) Has been cancelled
Notify Smoke Test / Notify Unit Tests (push) Has been cancelled
Notify Smoke Test / Notifier Service Tests (push) Has been cancelled
Notify Smoke Test / Notification Smoke Test (push) Has been cancelled
Policy Lint & Smoke / policy-lint (push) Has been cancelled
27 lines
905 B
C#
27 lines
905 B
C#
using System.Reflection;
|
|
using StellaOps.Infrastructure.Postgres.Testing;
|
|
using Xunit;
|
|
|
|
namespace StellaOps.SbomService.Storage.Postgres.Tests;
|
|
|
|
/// <summary>
|
|
/// PostgreSQL integration test fixture for the SbomService module.
|
|
/// </summary>
|
|
public sealed class SbomServicePostgresFixture : PostgresIntegrationFixture, ICollectionFixture<SbomServicePostgresFixture>
|
|
{
|
|
protected override Assembly? GetMigrationAssembly()
|
|
=> typeof(SbomServiceDataSource).Assembly;
|
|
|
|
protected override string GetModuleName() => "SbomService";
|
|
}
|
|
|
|
/// <summary>
|
|
/// Collection definition for SbomService PostgreSQL integration tests.
|
|
/// Tests in this collection share a single PostgreSQL container instance.
|
|
/// </summary>
|
|
[CollectionDefinition(Name)]
|
|
public sealed class SbomServicePostgresCollection : ICollectionFixture<SbomServicePostgresFixture>
|
|
{
|
|
public const string Name = "SbomServicePostgres";
|
|
}
|