Esempio n. 1
0
 public MockUnitMatcher(IUnitMatcher impl) => _impl = impl;
Esempio n. 2
0
 public bool Equals(IUnitMatcher other)
 {
     EqualsCallsCount++;
     return(_impl.Equals(other));
 }
Esempio n. 3
0
 public PropertyValueTuner([NotNull] IUnitMatcher propertyUnitMatcher, [NotNull] IBuildAction getPropertyAction, int weight)
     : base(propertyUnitMatcher, getPropertyAction, weight)
 {
 }
Esempio n. 4
0
 protected BuildValuePlan([NotNull] IUnitMatcher unitMatcher, [NotNull] IBuildAction getValueAction, int weight)
     : base(unitMatcher, getValueAction, weight)
 {
 }
 public LastUnitSequenceMatcher([NotNull] IUnitMatcher unitMatcher, int weight = 0) : base(weight) =>
Esempio n. 6
0
 public PropertyValueBuildPlan(
     [NotNull] IUnitMatcher propertyMatcher,
     [NotNull] IBuildAction getPropertyAction,
     [NotNull] IBuildAction getValueAction,
     int weight)
     : base(propertyMatcher, getValueAction, weight) =>
Esempio n. 7
0
 public ParameterValueBuildPlan([NotNull] IUnitMatcher parameterMatcher, [NotNull] IBuildAction getValueAction, int weight)
     : base(parameterMatcher, getValueAction, weight)
 {
 }
 public WildcardUnitSequenceMatcher([NotNull] IUnitMatcher matcher, int weight) : base(weight) =>
 public UnitMatcherExtensibility(IUnitMatcher unitMatcher, int weight)
 {
     UnitMatcher = unitMatcher;
     Weight      = weight;
 }
Esempio n. 10
0
 public bool Equals(IUnitMatcher other) => throw new NotSupportedException();
Esempio n. 11
0
 public BuildActionExtensibility(IUnitMatcher unitMatcher, IBuildAction getPropertyAction, int weight) : base(unitMatcher, weight) =>
Esempio n. 12
0
 public StrictUnitSequenceMatcher([NotNull] IUnitMatcher matcher, int weight) : base(weight) =>
Esempio n. 13
0
 public StrictUnitSequenceMatcher([NotNull] IUnitMatcher matcher) : this(matcher, UnitSequenceMatchingWeight.StrictMatchingUnit)
 {
 }
Esempio n. 14
0
 public bool Equals(IUnitMatcher other) => ReferenceEquals(this, other);
Esempio n. 15
0
 public bool Equals(IUnitMatcher obj) => obj is PropertyMatcher;
Esempio n. 16
0
 public ParameterValueTuner([NotNull] IUnitMatcher unitMatcher, int weight) : base(unitMatcher, weight)
 {
 }
 public WildcardUnitSequenceMatcher([NotNull] IUnitMatcher matcher) : this(matcher, UnitSequenceMatchingWeight.WildcardMatchingUnit)
 {
 }