stabilizaiton work - projects rework for maintenanceability and ui livening

This commit is contained in:
master
2026-02-03 23:40:04 +02:00
parent 074ce117ba
commit 557feefdc3
3305 changed files with 186813 additions and 107843 deletions

View File

@@ -0,0 +1,19 @@
using System.Linq;
using StellaOps.DistroIntel;
using Xunit;
namespace StellaOps.DistroIntel.Tests;
public sealed class DistroMappingsCoverageTests
{
[Fact]
public void DistroMappings_Derivatives_HaveNoDuplicateKeys()
{
var duplicates = DistroMappings.Derivatives
.GroupBy(d => (d.CanonicalDistro, d.DerivativeDistro, d.MajorRelease))
.Where(g => g.Count() > 1)
.ToList();
Assert.Empty(duplicates);
}
}

View File

@@ -4,5 +4,5 @@ Source of truth: `docs/implplan/SPRINT_20260130_002_Tools_csproj_remediation_sol
| Task ID | Status | Notes |
| --- | --- | --- |
| REMED-05 | TODO | Remediation checklist: docs/implplan/audits/csproj-standards/remediation/checklists/src/__Libraries/__Tests/StellaOps.DistroIntel.Tests/StellaOps.DistroIntel.Tests.md. |
| REMED-05 | BLOCKED | Remediation checklist: docs/implplan/audits/csproj-standards/remediation/checklists/src/__Libraries/__Tests/StellaOps.DistroIntel.Tests/StellaOps.DistroIntel.Tests.md. Missing module AGENTS.md in src/__Libraries/__Tests/StellaOps.DistroIntel.Tests. |
| REMED-06 | DONE | SOLID review notes captured for SPRINT_20260130_002. |