10 references to Convention
Infrastructure.Tests (1)
TestTriggerMap\SelectTestsAcceptanceTests.cs (1)
484Assert.Equal(CauseKind.Convention, cause.Kind);
SelectTests (9)
Program.cs (8)
846var direct = members.Where(m => m.Value.Kind is CauseKind.Convention or CauseKind.PathRule).Select(m => m.Key).OrderBy(p => p, StringComparer.Ordinal).ToList(); 848var other = members.Where(m => m.Value.Kind is not (CauseKind.Convention or CauseKind.PathRule or CauseKind.Layer1Graph)).Select(m => m.Key).OrderBy(p => p, StringComparer.Ordinal).ToList(); 921CauseKind.Convention or CauseKind.PathRule => $"file:{cause.Trigger}", 998.Where(c => c.Kind is CauseKind.Convention or CauseKind.PathRule) 1003.Where(c => c.Kind is not (CauseKind.Convention or CauseKind.PathRule)) 1193CauseKind.Convention => 0, 1204CauseKind.Convention => $"`{cause.Trigger}`", 1237CauseKind.Convention => $"convention match `{cause.Trigger}`",
TestSelector.cs (1)
196AddCause(testCauses, project, new Cause(CauseKind.Convention, file));