Ejemplo n.º 1
0
 public VerificationSetPlan(Section section, ISetMatcher matcher, ISetComparison comparison,
     IEnumerable<StepValues> expected, Cell[] cells)
 {
     _section = section;
     _matcher = matcher;
     _comparison = comparison;
     _expected = expected;
     _cells = cells;
 }
Ejemplo n.º 2
0
 public VerificationSetPlan(Section section, ISetMatcher matcher, ISetComparison comparison,
                            IEnumerable <StepValues> expected, Cell[] cells)
 {
     _section    = section;
     _matcher    = matcher;
     _comparison = comparison;
     _expected   = expected;
     _cells      = cells;
 }
Ejemplo n.º 3
0
 public VerificationSetPlan(SetVerificationGrammar grammar, Section section, ISetMatcher matcher, ISetComparison comparison, IEnumerable <StepValues> expected, Cell[] cells, long maximumRuntimeInMilliseconds)
 {
     _grammar    = grammar;
     _section    = section;
     _matcher    = matcher;
     _comparison = comparison;
     _expected   = expected;
     _cells      = cells;
     _maximumRuntimeInMilliseconds = maximumRuntimeInMilliseconds;
 }