コード例 #1
0
ファイル: PerformanceTest.cs プロジェクト: Temp1ar/Armature
 public MockUnitMatcher(IUnitMatcher impl) => _impl = impl;
コード例 #2
0
ファイル: PerformanceTest.cs プロジェクト: Temp1ar/Armature
 public bool Equals(IUnitMatcher other)
 {
     EqualsCallsCount++;
     return(_impl.Equals(other));
 }
コード例 #3
0
 public PropertyValueTuner([NotNull] IUnitMatcher propertyUnitMatcher, [NotNull] IBuildAction getPropertyAction, int weight)
     : base(propertyUnitMatcher, getPropertyAction, weight)
 {
 }
コード例 #4
0
ファイル: BuildValuePlan.cs プロジェクト: Temp1ar/Armature
 protected BuildValuePlan([NotNull] IUnitMatcher unitMatcher, [NotNull] IBuildAction getValueAction, int weight)
     : base(unitMatcher, getValueAction, weight)
 {
 }
コード例 #5
0
 public LastUnitSequenceMatcher([NotNull] IUnitMatcher unitMatcher, int weight = 0) : base(weight) =>
コード例 #6
0
 public PropertyValueBuildPlan(
     [NotNull] IUnitMatcher propertyMatcher,
     [NotNull] IBuildAction getPropertyAction,
     [NotNull] IBuildAction getValueAction,
     int weight)
     : base(propertyMatcher, getValueAction, weight) =>
コード例 #7
0
 public ParameterValueBuildPlan([NotNull] IUnitMatcher parameterMatcher, [NotNull] IBuildAction getValueAction, int weight)
     : base(parameterMatcher, getValueAction, weight)
 {
 }
コード例 #8
0
 public WildcardUnitSequenceMatcher([NotNull] IUnitMatcher matcher, int weight) : base(weight) =>
コード例 #9
0
 public UnitMatcherExtensibility(IUnitMatcher unitMatcher, int weight)
 {
     UnitMatcher = unitMatcher;
     Weight      = weight;
 }
コード例 #10
0
ファイル: InterceptionTest.cs プロジェクト: Temp1ar/Armature
 public bool Equals(IUnitMatcher other) => throw new NotSupportedException();
コード例 #11
0
 public BuildActionExtensibility(IUnitMatcher unitMatcher, IBuildAction getPropertyAction, int weight) : base(unitMatcher, weight) =>
コード例 #12
0
 public StrictUnitSequenceMatcher([NotNull] IUnitMatcher matcher, int weight) : base(weight) =>
コード例 #13
0
 public StrictUnitSequenceMatcher([NotNull] IUnitMatcher matcher) : this(matcher, UnitSequenceMatchingWeight.StrictMatchingUnit)
 {
 }
コード例 #14
0
 public bool Equals(IUnitMatcher other) => ReferenceEquals(this, other);
コード例 #15
0
ファイル: PropertyMatcher.cs プロジェクト: Temp1ar/Armature
 public bool Equals(IUnitMatcher obj) => obj is PropertyMatcher;
コード例 #16
0
 public ParameterValueTuner([NotNull] IUnitMatcher unitMatcher, int weight) : base(unitMatcher, weight)
 {
 }
コード例 #17
0
 public WildcardUnitSequenceMatcher([NotNull] IUnitMatcher matcher) : this(matcher, UnitSequenceMatchingWeight.WildcardMatchingUnit)
 {
 }