refactor(dotnet): structure pipeline orchestration steps
Validators (Pushes and Pull Requests) / validate-ui-and-storage (push) Successful in 18s
Validators (Pushes and Pull Requests) / validate-core (push) Failing after 1m44s

This commit is contained in:
2026-07-13 01:24:10 +09:00
parent a2db0bae00
commit d6a2dca9c8
2 changed files with 54 additions and 39 deletions
@@ -17,6 +17,9 @@ namespace QuantEngine.Core.Tests
Assert.NotNull(result);
Assert.Equal("PASS", result.Gate);
Assert.Equal(7, result.Steps.Count);
Assert.Contains(result.Steps, step => step.StepName == "scores_calculation");
Assert.Contains(result.Steps, step => step.StepName == "routing_decision");
Assert.Contains(result.Steps, step => step.StepName == "golden_check");
foreach (var step in result.Steps)
{