save progress
This commit is contained in:
@@ -15,7 +15,7 @@ namespace StellaOps.Scanner.WebService.Tests.Integration;
|
||||
/// End-to-end integration tests for the Triage workflow.
|
||||
/// Tests the complete flow from alert list to decision recording.
|
||||
/// </summary>
|
||||
public sealed class TriageWorkflowIntegrationTests : IClassFixture<ScannerApplicationFactory>
|
||||
public sealed class TriageWorkflowIntegrationTests : IClassFixture<ScannerApplicationFixture>
|
||||
{
|
||||
private readonly HttpClient _client;
|
||||
private static readonly JsonSerializerOptions JsonOptions = new()
|
||||
@@ -23,9 +23,9 @@ public sealed class TriageWorkflowIntegrationTests : IClassFixture<ScannerApplic
|
||||
PropertyNamingPolicy = JsonNamingPolicy.CamelCase
|
||||
};
|
||||
|
||||
public TriageWorkflowIntegrationTests(ScannerApplicationFactory factory)
|
||||
public TriageWorkflowIntegrationTests(ScannerApplicationFixture fixture)
|
||||
{
|
||||
_client = factory.CreateClient();
|
||||
_client = fixture.Factory.CreateClient();
|
||||
}
|
||||
|
||||
#region Alert List Tests
|
||||
|
||||
Reference in New Issue
Block a user