10 references to Convention
Infrastructure.Tests (1)
TestTriggerMap\SelectTestsAcceptanceTests.cs (1)
484Assert.Equal(CauseKind.Convention, cause.Kind);
SelectTests (9)
Program.cs (8)
902var direct = members.Where(m => m.Value.Kind is CauseKind.Convention or CauseKind.PathRule).Select(m => m.Key).OrderBy(p => p, StringComparer.Ordinal).ToList(); 904var 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(); 977CauseKind.Convention or CauseKind.PathRule => $"file:{cause.Trigger}", 1054.Where(c => c.Kind is CauseKind.Convention or CauseKind.PathRule) 1059.Where(c => c.Kind is not (CauseKind.Convention or CauseKind.PathRule)) 1274CauseKind.Convention => 0, 1285CauseKind.Convention => $"`{cause.Trigger}`", 1318CauseKind.Convention => $"convention match `{cause.Trigger}`",
TestSelector.cs (1)
195AddCause(testCauses, project, new Cause(CauseKind.Convention, file));