2 instantiations of AffectedPath
Infrastructure.Tests (1)
TestTriggerMap\SelectTestsAcceptanceTests.cs (1)
506["Layer1Only"] = new AffectedPath("src/OwnedProj/Thing.cs", ["Aspire.OwnedProj", "Aspire.Mid", "Layer1Only"]),
SelectTests (1)
GraphAffectedProjects.cs (1)
208paths[name] = new AffectedPath(seedFile, chain);
10 references to AffectedPath
Infrastructure.Tests (3)
TestTriggerMap\GraphAffectedProjectsTests.cs (2)
97var appTests = result.Paths["AppTests"]; 102var core = result.Paths["Core"];
TestTriggerMap\SelectTestsAcceptanceTests.cs (1)
504var paths = new Dictionary<string, AffectedPath>(StringComparer.Ordinal)
SelectTests (7)
GraphAffectedProjects.cs (4)
32IReadOnlyDictionary<string, AffectedPath> Paths) 36new Dictionary<string, AffectedPath>(StringComparer.Ordinal)); 179private static Dictionary<string, AffectedPath> BuildAffectedPaths( 184var paths = new Dictionary<string, AffectedPath>(StringComparer.Ordinal);
TestSelector.cs (3)
157IReadOnlyDictionary<string, AffectedPath>? layer1Paths = null) 253if (layer1Paths is not null && layer1Paths.TryGetValue(project, out var affectedPath)) 336private static IReadOnlyList<string> BuildLayer1CausePath(AffectedPath affectedPath)